summaryrefslogtreecommitdiff
path: root/test/CodeGen/X86/hidden-vis-4.ll
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2009-09-03 07:04:02 +0000
committerEvan Cheng <evan.cheng@apple.com>2009-09-03 07:04:02 +0000
commit63476a80404125e5196b6c09113c1d4796da0604 (patch)
tree74b29b42a6080d47fbc235781bd751ac8279a3ed /test/CodeGen/X86/hidden-vis-4.ll
parent8aa9fba7cbc9ed58a0f5e32ad5e54c3bb984b3e4 (diff)
downloadllvm-63476a80404125e5196b6c09113c1d4796da0604.tar.gz
llvm-63476a80404125e5196b6c09113c1d4796da0604.tar.bz2
llvm-63476a80404125e5196b6c09113c1d4796da0604.tar.xz
Reference to hidden symbols do not have to go through non-lazy pointer in non-pic mode. rdar://7187172.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80904 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/X86/hidden-vis-4.ll')
-rw-r--r--test/CodeGen/X86/hidden-vis-4.ll7
1 files changed, 4 insertions, 3 deletions
diff --git a/test/CodeGen/X86/hidden-vis-4.ll b/test/CodeGen/X86/hidden-vis-4.ll
index e6936de103..a744a02f0c 100644
--- a/test/CodeGen/X86/hidden-vis-4.ll
+++ b/test/CodeGen/X86/hidden-vis-4.ll
@@ -1,11 +1,12 @@
-; RUN: llvm-as < %s | llc -mtriple=i386-apple-darwin9 | grep non_lazy_ptr
-; RUN: llvm-as < %s | llc -mtriple=i386-apple-darwin9 | grep long
-; RUN: llvm-as < %s | llc -mtriple=i386-apple-darwin9 | grep comm
+; RUN: llvm-as < %s | llc -mtriple=i386-apple-darwin9 | FileCheck %s
@x = common hidden global i32 0 ; <i32*> [#uses=1]
define i32 @t() nounwind readonly {
entry:
+; CHECK: t:
+; CHECK: movl _x, %eax
+; CHECK: .comm _x,4
%0 = load i32* @x, align 4 ; <i32> [#uses=1]
ret i32 %0
}