summaryrefslogtreecommitdiff
path: root/test/CodeGen/ARM/load-global.ll
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-10-19 18:18:07 +0000
committerChris Lattner <sabre@nondot.org>2009-10-19 18:18:07 +0000
commitbaa989ed6e22a8255d92d63789c2a1987da9ab12 (patch)
tree1517b2dd3b9b26a6d281709fdc959ba383855e20 /test/CodeGen/ARM/load-global.ll
parentee8b32981ea70e6751dea1e2bfdb8320ca859bf7 (diff)
downloadllvm-baa989ed6e22a8255d92d63789c2a1987da9ab12.tar.gz
llvm-baa989ed6e22a8255d92d63789c2a1987da9ab12.tar.bz2
llvm-baa989ed6e22a8255d92d63789c2a1987da9ab12.tar.xz
rename test
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@84515 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/ARM/load-global.ll')
-rw-r--r--test/CodeGen/ARM/load-global.ll15
1 files changed, 0 insertions, 15 deletions
diff --git a/test/CodeGen/ARM/load-global.ll b/test/CodeGen/ARM/load-global.ll
deleted file mode 100644
index 56a4a477f5..0000000000
--- a/test/CodeGen/ARM/load-global.ll
+++ /dev/null
@@ -1,15 +0,0 @@
-; RUN: llc < %s -mtriple=arm-apple-darwin -relocation-model=static | \
-; RUN: not grep {L_G\$non_lazy_ptr}
-; RUN: llc < %s -mtriple=arm-apple-darwin -relocation-model=dynamic-no-pic | \
-; RUN: grep {L_G\$non_lazy_ptr} | count 2
-; RUN: llc < %s -mtriple=arm-apple-darwin -relocation-model=pic | \
-; RUN: grep {ldr.*pc} | count 1
-; RUN: llc < %s -mtriple=arm-linux-gnueabi -relocation-model=pic | \
-; RUN: grep {GOT} | count 1
-
-@G = external global i32
-
-define i32 @test1() {
- %tmp = load i32* @G
- ret i32 %tmp
-}