summaryrefslogtreecommitdiff
path: root/test/Transforms/DeadArgElim/deadexternal.ll
diff options
context:
space:
mode:
authorNick Lewycky <nicholas@mxc.ca>2010-01-23 20:32:12 +0000
committerNick Lewycky <nicholas@mxc.ca>2010-01-23 20:32:12 +0000
commit44540740aeafcae8c5d030000e7fd468f01d0da9 (patch)
tree03b456cae6873c5e57aa924e0881ab945b837409 /test/Transforms/DeadArgElim/deadexternal.ll
parentd668839cb9b5db6865fd98e5e7dfccd64abf3e95 (diff)
downloadllvm-44540740aeafcae8c5d030000e7fd468f01d0da9.tar.gz
llvm-44540740aeafcae8c5d030000e7fd468f01d0da9.tar.bz2
llvm-44540740aeafcae8c5d030000e7fd468f01d0da9.tar.xz
Speculatively revert r94322 to see if it fixes darwin selfhost buildbot.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94331 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Transforms/DeadArgElim/deadexternal.ll')
-rw-r--r--test/Transforms/DeadArgElim/deadexternal.ll12
1 files changed, 0 insertions, 12 deletions
diff --git a/test/Transforms/DeadArgElim/deadexternal.ll b/test/Transforms/DeadArgElim/deadexternal.ll
deleted file mode 100644
index 84341781da..0000000000
--- a/test/Transforms/DeadArgElim/deadexternal.ll
+++ /dev/null
@@ -1,12 +0,0 @@
-; RUN: opt -deadargelim -S %s | FileCheck %s
-
-define void @test(i32) {
- ret void
-}
-
-define void @foo() {
- call void @test(i32 0)
- ret void
-; CHECK: @foo
-; CHECK: i32 undef
-}