Explorar el Código

Fixed win64 compilation after r17497 ('movq' is no longer valid as a replacement for 'mov' in Intel asmmode).

git-svn-id: trunk@17498 -
sergei hace 14 años
padre
commit
a4ef532fd3
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      packages/winunits-jedi/src/jwawinnt.pas

+ 1 - 1
packages/winunits-jedi/src/jwawinnt.pas

@@ -9020,7 +9020,7 @@ asm
         MOV     EAX, FS:[024]   // was zero        
 {$endif cpu386}
 {$ifdef cpux86_64}
-        movq     RAX, GS:[48]
+        mov     RAX, GS:[48]
 {$endif cpux86_64}
 end;
 {$ENDIF JWA_INCLUDEMODE}