blob: e5655974f7e5c312595a1e3d27139240749fb1e7 [file] [log] [blame]
Evan Cheng802cd842009-03-21 18:12:24 +00001; RUN: bugpoint %s -bugpoint-crashcalls -silence-passes
Chris Lattner484147d2003-06-24 23:40:27 +00002
Reid Spencer660c4f92007-03-19 18:08:42 +00003; Test to make sure that arguments are removed from the function if they are
4; unnecessary.
Chris Lattner484147d2003-06-24 23:40:27 +00005
Reid Spencer660c4f92007-03-19 18:08:42 +00006declare i32 @test2()
7
8define i32 @test(i32 %A, i32 %B, float %C) {
9 call i32 @test2()
10 ret i32 %1
Chris Lattner484147d2003-06-24 23:40:27 +000011}