blob: 4d2c60dc35c5551763a0f7eb65cd71b2dd11e422 [file] [log] [blame]
Reid Spencer660c4f92007-03-19 18:08:42 +00001; RUN: bugpoint %s -bugpoint-crashcalls
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}