aboutsummaryrefslogtreecommitdiffstats
path: root/test/Transforms/Inline/always_inline_dyn_alloca.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/Transforms/Inline/always_inline_dyn_alloca.ll')
-rw-r--r--test/Transforms/Inline/always_inline_dyn_alloca.ll15
1 files changed, 0 insertions, 15 deletions
diff --git a/test/Transforms/Inline/always_inline_dyn_alloca.ll b/test/Transforms/Inline/always_inline_dyn_alloca.ll
deleted file mode 100644
index 25cfc49..0000000
--- a/test/Transforms/Inline/always_inline_dyn_alloca.ll
+++ /dev/null
@@ -1,15 +0,0 @@
-; RUN: opt < %s -inline -S | not grep callee
-; rdar://6655932
-
-; If callee is marked alwaysinline, inline it! Even if callee has dynamic
-; alloca and caller does not,
-
-define internal void @callee(i32 %N) alwaysinline {
- %P = alloca i32, i32 %N
- ret void
-}
-
-define void @foo(i32 %N) {
- call void @callee( i32 %N )
- ret void
-}