Browse Source

* shift128right last parameter should also by var type

git-svn-id: trunk@14993 -
pierre 15 years ago
parent
commit
cee190b1f8
1 changed files with 1 additions and 1 deletions
  1. 1 1
      rtl/inc/softfpu.pp

+ 1 - 1
rtl/inc/softfpu.pp

@@ -648,7 +648,7 @@ End;
 | which are stored at the locations pointed to by `z0Ptr' and `z1Ptr'.
 *----------------------------------------------------------------------------*}
 
-procedure shift128Right(a0: bits64; a1: bits64; count: int16; var z0Ptr: bits64; z1Ptr : bits64);
+procedure shift128Right(a0: bits64; a1: bits64; count: int16; var z0Ptr: bits64; var z1Ptr : bits64);
 var
     z0, z1: bits64;
     negCount: int8;