summaryrefslogtreecommitdiff
path: root/test/Transforms/Inline
diff options
context:
space:
mode:
authorEric Christopher <echristo@apple.com>2010-03-24 23:35:21 +0000
committerEric Christopher <echristo@apple.com>2010-03-24 23:35:21 +0000
commit0623e90398153be61226ad19f1b40d3817874526 (patch)
tree5cca292b1705f9ab75978b8bef12ed3ac9573c3c /test/Transforms/Inline
parent014dc4e7202f88fdd9c255837bf125f891f2f6b6 (diff)
downloadllvm-0623e90398153be61226ad19f1b40d3817874526.tar.gz
llvm-0623e90398153be61226ad19f1b40d3817874526.tar.bz2
llvm-0623e90398153be61226ad19f1b40d3817874526.tar.xz
Temporarily revert this, it's causing an issue with an internal project.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@99451 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Transforms/Inline')
-rw-r--r--test/Transforms/Inline/noinline.ll18
1 files changed, 0 insertions, 18 deletions
diff --git a/test/Transforms/Inline/noinline.ll b/test/Transforms/Inline/noinline.ll
deleted file mode 100644
index dc3f6e0030..0000000000
--- a/test/Transforms/Inline/noinline.ll
+++ /dev/null
@@ -1,18 +0,0 @@
-; RUN: opt %s -inline -S | FileCheck %s
-; PR6682
-declare void @foo() nounwind
-
-define void @bar() nounwind {
-entry:
- tail call void @foo() nounwind
- ret void
-}
-
-define void @bazz() nounwind {
-entry:
- tail call void @bar() nounwind noinline
- ret void
-}
-
-; CHECK: define void @bazz()
-; CHECK: call void @bar()