aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/ARM/addrmode.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/ARM/addrmode.ll')
-rw-r--r--test/CodeGen/ARM/addrmode.ll19
1 files changed, 0 insertions, 19 deletions
diff --git a/test/CodeGen/ARM/addrmode.ll b/test/CodeGen/ARM/addrmode.ll
deleted file mode 100644
index 52bb9a20662e..000000000000
--- a/test/CodeGen/ARM/addrmode.ll
+++ /dev/null
@@ -1,19 +0,0 @@
-; REQUIRES: asserts
-; RUN: llc -mtriple=arm-eabi -stats %s -o - 2>&1 | FileCheck %s
-
-define i32 @t1(i32 %a) {
- %b = mul i32 %a, 9
- %c = inttoptr i32 %b to i32*
- %d = load i32, i32* %c
- ret i32 %d
-}
-
-define i32 @t2(i32 %a) {
- %b = mul i32 %a, -7
- %c = inttoptr i32 %b to i32*
- %d = load i32, i32* %c
- ret i32 %d
-}
-
-; CHECK: 4 asm-printer
-