aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2011-02-22 06:58:34 +0000
committerEvan Cheng <evan.cheng@apple.com>2011-02-22 06:58:34 +0000
commitaf05c69ba024b1838ae6f1071d6fd0f9fe33999f (patch)
treeb759fb7444d6727e279f6aac3a07d28b7b789c7f /test
parentfcfcdbc86a56ea97cdb87fe662311df778e85fbb (diff)
downloadexternal_llvm-af05c69ba024b1838ae6f1071d6fd0f9fe33999f.zip
external_llvm-af05c69ba024b1838ae6f1071d6fd0f9fe33999f.tar.gz
external_llvm-af05c69ba024b1838ae6f1071d6fd0f9fe33999f.tar.bz2
available_externally (hidden or not) GVs are always accessed via stubs. rdar://9027648.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@126191 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r--test/CodeGen/ARM/available_externally.ll16
1 files changed, 16 insertions, 0 deletions
diff --git a/test/CodeGen/ARM/available_externally.ll b/test/CodeGen/ARM/available_externally.ll
new file mode 100644
index 0000000..0f646d5
--- /dev/null
+++ b/test/CodeGen/ARM/available_externally.ll
@@ -0,0 +1,16 @@
+; RUN: llc < %s -mtriple=arm-apple-darwin -relocation-model=pic | FileCheck %s
+; rdar://9027648
+
+@A = available_externally hidden constant i32 1
+@B = external hidden constant i32
+
+define i32 @t1() {
+ %tmp = load i32* @A
+ store i32 %tmp, i32* @B
+ ret i32 %tmp
+}
+
+; CHECK: L_A$non_lazy_ptr:
+; CHECK-NEXT: .long _A
+; CHECK: L_B$non_lazy_ptr:
+; CHECK-NEXT: .long _B