* Fixed test on 64-bit targets, was always using i386 code due to incorrect CPU selection symbol (must be "cpux86_64", not "x86_64").

git-svn-id: trunk@32087 -
This commit is contained in:
sergei 2015-10-18 10:02:21 +00:00
parent 7fc3ed2644
commit be6bcb71dc

View File

@ -11,7 +11,7 @@ end;
function foo: pointer; assembler; nostackframe;
asm
{$ifdef x86_64}
{$ifdef cpux86_64}
lea rax,[bar+rip]
{$else}
lea eax,[bar]