mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-06-03 11:19:02 +02:00
* 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:
parent
7fc3ed2644
commit
be6bcb71dc
@ -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]
|
||||
|
Loading…
Reference in New Issue
Block a user