Explorar o código

- rm some unneeded assignments from the test

git-svn-id: trunk@27489 -
nickysn %!s(int64=11) %!d(string=hai) anos
pai
achega
cef4092f3d
Modificáronse 1 ficheiros con 0 adicións e 4 borrados
  1. 0 4
      tests/test/cpu16/i8086/tfarptr3.pp

+ 0 - 4
tests/test/cpu16/i8086/tfarptr3.pp

@@ -149,27 +149,23 @@ begin
   if FarPtr2 <> Ptr($1234, $65CB) then
     Error(20);
   Writeln('farptr_const - int16_var');
-  FarPtr := Ptr($1234, $5678);
   int16 := $F0AD;
   FarPtr2 := nil;
   FarPtr2 := FarPointer($12345678) - int16;
   if FarPtr2 <> Ptr($1234, $65CB) then
     Error(21);
   Writeln('farptr_const - int32_var');
-  FarPtr := Ptr($1234, $5678);
   int32 := $55AAF0AD;
   FarPtr2 := nil;
   FarPtr2 := FarPointer($12345678) - int32;
   if FarPtr2 <> Ptr($1234, $65CB) then
     Error(22);
   Writeln('farptr_const - int16_const');
-  FarPtr := Ptr($1234, $5678);
   FarPtr2 := nil;
   FarPtr2 := FarPointer($12345678) - $F0AD;
   if FarPtr2 <> Ptr($1234, $65CB) then
     Error(23);
   Writeln('farptr_const - int32_const');
-  FarPtr := Ptr($1234, $5678);
   FarPtr2 := nil;
   FarPtr2 := FarPointer($12345678) - $55AAF0AD;
   if FarPtr2 <> Ptr($1234, $65CB) then