浏览代码

* 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 10 年之前
父节点
当前提交
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