Browse Source

* 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 -
sergei 9 years ago
parent
commit
be6bcb71dc
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tests/webtbs/tw22376.pp

+ 1 - 1
tests/webtbs/tw22376.pp

@@ -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]