aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/ARM/2010-11-29-PrologueBug.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/ARM/2010-11-29-PrologueBug.ll')
-rw-r--r--test/CodeGen/ARM/2010-11-29-PrologueBug.ll21
1 files changed, 0 insertions, 21 deletions
diff --git a/test/CodeGen/ARM/2010-11-29-PrologueBug.ll b/test/CodeGen/ARM/2010-11-29-PrologueBug.ll
deleted file mode 100644
index 79315ab59d4a..000000000000
--- a/test/CodeGen/ARM/2010-11-29-PrologueBug.ll
+++ /dev/null
@@ -1,21 +0,0 @@
-; RUN: llc < %s -mtriple=armv7-apple-ios | FileCheck %s
-; RUN: llc < %s -mtriple=thumbv7-apple-ios | FileCheck %s
-; rdar://8690640
-
-define i32* @t(i32* %x) nounwind "no-frame-pointer-elim"="true" {
-entry:
-; CHECK-LABEL: t:
-; CHECK: push
-; CHECK: mov r7, sp
-; CHECK: bl _foo
-; CHECK: bl _foo
-; CHECK: bl _foo
-; CHECK: pop {r7, pc}
-
- %0 = tail call i32* @foo(i32* %x) nounwind
- %1 = tail call i32* @foo(i32* %0) nounwind
- %2 = tail call i32* @foo(i32* %1) nounwind
- ret i32* %2
-}
-
-declare i32* @foo(i32*)