浏览代码

* 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 10 年之前
父节点
当前提交
be6bcb71dc
共有 1 个文件被更改,包括 1 次插入1 次删除
  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]