diff options
Diffstat (limited to 'llvm/test/CodeGen/ARM/load-global.ll')
-rw-r--r-- | llvm/test/CodeGen/ARM/load-global.ll | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/llvm/test/CodeGen/ARM/load-global.ll b/llvm/test/CodeGen/ARM/load-global.ll new file mode 100644 index 00000000000..45f4148ab27 --- /dev/null +++ b/llvm/test/CodeGen/ARM/load-global.ll @@ -0,0 +1,10 @@ +; RUN: llvm-upgrade < %s | llvm-as | llc -march=arm && +; RUN: llvm-upgrade < %s | llvm-as | llc -mtriple=arm-apple-darwin -relocation-model=dynamic-no-pic | grep "L_G$non_lazy_ptr" | wc -l | grep 2 && +; RUN: llvm-upgrade < %s | llvm-as | llc -mtriple=arm-apple-darwin -relocation-model=pic | grep "ldr.*pc" | wc -l | grep 1 + +%G = external global int + +int %test1() { + %tmp = load int* %G + ret int %tmp +} |