You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
235 B
12 lines
235 B
7 months ago
|
; RUN: opt < %s -deadargelim -S | grep "@test("
|
||
|
; RUN: opt < %s -deadargelim -S | not grep dead
|
||
|
|
||
|
define internal i32 @test(i32 %X, i32 %dead) {
|
||
|
ret i32 %X
|
||
|
}
|
||
|
|
||
|
define i32 @caller() {
|
||
|
%A = call i32 @test(i32 123, i32 456)
|
||
|
ret i32 %A
|
||
|
}
|