mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 16:33:37 +01:00
cc67a7f57e
llvm-svn: 101231
14 lines
188 B
LLVM
14 lines
188 B
LLVM
; RUN: opt -deadargelim -S %s | FileCheck %s
|
|
; XFAIL: *
|
|
|
|
define void @test(i32) {
|
|
ret void
|
|
}
|
|
|
|
define void @foo() {
|
|
call void @test(i32 0)
|
|
ret void
|
|
; CHECK: @foo
|
|
; CHECK: i32 undef
|
|
}
|