blob: 5a0bd6f00936e004eb26c3d88854afcf808a3ccf [file] [log] [blame]
Chris Lattner484147d2003-06-24 23:40:27 +00001; RUN: bugpoint %s -bugpoint-crashcalls
2
3; Test to make sure that arguments are removed from the function if they are unnecessary.
4
5declare int %test2()
6int %test(int %A, int %B, float %C) {
7 call int %test2()
8 ret int %0
9}