aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/ARM/hello.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/ARM/hello.ll')
-rw-r--r--test/CodeGen/ARM/hello.ll30
1 files changed, 0 insertions, 30 deletions
diff --git a/test/CodeGen/ARM/hello.ll b/test/CodeGen/ARM/hello.ll
deleted file mode 100644
index 264105994935..000000000000
--- a/test/CodeGen/ARM/hello.ll
+++ /dev/null
@@ -1,30 +0,0 @@
-; RUN: llc -mtriple=arm-eabi %s -o /dev/null
-; RUN: llc -mtriple=armv6-linux-gnueabi %s -o - | FileCheck %s
-
-; RUN: llc -mtriple=armv6-linux-gnu --disable-fp-elim %s -o - \
-; RUN: | FileCheck %s -check-prefix CHECK-FP-ELIM
-
-; RUN: llc -mtriple=armv6-apple-ios %s -o - \
-; RUN: | FileCheck %s -check-prefix CHECK-FP-ELIM
-
-@str = internal constant [12 x i8] c"Hello World\00"
-
-define i32 @main() "no-frame-pointer-elim"="true" {
- %tmp = call i32 @puts( i8* getelementptr ([12 x i8], [12 x i8]* @str, i32 0, i64 0) ) ; <i32> [#uses=0]
- ret i32 0
-}
-
-declare i32 @puts(i8*)
-
-; CHECK-LABEL: main
-; CHECK-NOT: mov
-; CHECK: mov r11, sp
-; CHECK-NOT: mov
-; CHECK: mov r0, #0
-; CHECK-NOT: mov
-
-; CHECK-FP-ELIM-LABEL: main
-; CHECK-FP-ELIM: mov
-; CHECK-FP-ELIM: mov
-; CHECK-FP-ELIM-NOT: mov
-