Browse Source

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

git-svn-id: trunk@17498 -
sergei 14 years ago
parent
commit
a4ef532fd3
1 changed files with 1 additions and 1 deletions
  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}