소스 검색

* mark the global variable as "public;" so its assembler symbol is exported
(because @gotpcrel shouldn't be used for non-global/exported symbols on
some platforms, such as OS X)
o fixes the test on OS X

git-svn-id: trunk@28986 -

Jonas Maebe 11 년 전
부모
커밋
b662d63258
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      tests/webtbs/tw23109.pp

+ 1 - 1
tests/webtbs/tw23109.pp

@@ -2,7 +2,7 @@
 { %opt=-Cg -vew }
 
 var
-  global: boolean;
+  global: boolean; public;
 begin
   asm
     movq global@GOTPCREL(%rip), %rax