Commit testcase for r101213.

llvm-svn: 101214
This commit is contained in:
Nick Lewycky 2010-04-14 03:46:42 +00:00
parent 5e0d0d551b
commit 49c5407ceb

View File

@ -0,0 +1,12 @@
; 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
}