aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/ARM/call-noret-minsize.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/ARM/call-noret-minsize.ll')
-rw-r--r--test/CodeGen/ARM/call-noret-minsize.ll27
1 files changed, 0 insertions, 27 deletions
diff --git a/test/CodeGen/ARM/call-noret-minsize.ll b/test/CodeGen/ARM/call-noret-minsize.ll
deleted file mode 100644
index e610d29d77fc..000000000000
--- a/test/CodeGen/ARM/call-noret-minsize.ll
+++ /dev/null
@@ -1,27 +0,0 @@
-; RUN: llc < %s -mtriple=armv7-apple-ios -mcpu=cortex-a8 | FileCheck %s -check-prefix=ARM
-; RUN: llc < %s -mtriple=armv7-apple-ios -mcpu=swift | FileCheck %s -check-prefix=SWIFT
-; rdar://12348580
-
-define void @t1() noreturn minsize nounwind ssp {
-entry:
-; ARM-LABEL: t1:
-; ARM: bl _bar
-
-; SWIFT-LABEL: t1:
-; SWIFT: bl _bar
- tail call void @bar() noreturn nounwind
- unreachable
-}
-
-define void @t2() noreturn minsize nounwind ssp {
-entry:
-; ARM-LABEL: t2:
-; ARM: bl _t1
-
-; SWIFT-LABEL: t2:
-; SWIFT: bl _t1
- tail call void @t1() noreturn nounwind
- unreachable
-}
-
-declare void @bar() noreturn