diff options
Diffstat (limited to 'llvm/test/Transforms/Inline/zero-cost.ll')
-rw-r--r-- | llvm/test/Transforms/Inline/zero-cost.ll | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/llvm/test/Transforms/Inline/zero-cost.ll b/llvm/test/Transforms/Inline/zero-cost.ll deleted file mode 100644 index 6f5348ff395..00000000000 --- a/llvm/test/Transforms/Inline/zero-cost.ll +++ /dev/null @@ -1,18 +0,0 @@ -; RUN: opt -inline -S %s | FileCheck %s -; RUN: opt -passes='cgscc(inline)' -S %s | FileCheck %s - -define void @f() { -entry: - tail call void @g() - unreachable - -; CHECK-LABEL: @f -; CHECK-NOT: call -; CHECK: unreachable -} - -define void @g() { -entry: - unreachable -} - |