소스 검색

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