summaryrefslogtreecommitdiff
path: root/test/CodeGen/ARM/ldr.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/ARM/ldr.ll')
-rw-r--r--test/CodeGen/ARM/ldr.ll23
1 files changed, 23 insertions, 0 deletions
diff --git a/test/CodeGen/ARM/ldr.ll b/test/CodeGen/ARM/ldr.ll
new file mode 100644
index 0000000000..4f25a1e71f
--- /dev/null
+++ b/test/CodeGen/ARM/ldr.ll
@@ -0,0 +1,23 @@
+; RUN: llvm-as < %s | llc -march=arm &&
+; RUN: llvm-as < %s | llc -march=arm | grep "ldr r0.*#0" | wc -l | grep 2 &&
+; RUN: llvm-as < %s | llc -march=arm | grep "ldr r0.*#4092" | wc -l | grep 1
+
+int %f1(int* %v) {
+entry:
+ %tmp = load int* %v ; <int> [#uses=1]
+ ret int %tmp
+}
+
+int %f2(int* %v) {
+entry:
+ %tmp2 = getelementptr int* %v, int 1023 ; <int*> [#uses=1]
+ %tmp = load int* %tmp2 ; <int> [#uses=1]
+ ret int %tmp
+}
+
+int %f3(int* %v) {
+entry:
+ %tmp2 = getelementptr int* %v, int 1024 ; <int*> [#uses=1]
+ %tmp = load int* %tmp2 ; <int> [#uses=1]
+ ret int %tmp
+}