Fix problem executing the CBE
[oota-llvm.git] / test / BugPoint / remove_arguments_test.ll
1 ; RUN: bugpoint %s  -bugpoint-crashcalls
2
3 ; Test to make sure that arguments are removed from the function if they are unnecessary.
4
5 declare int %test2()
6 int %test(int %A, int %B, float %C) {
7         call int %test2()
8         ret int %0
9 }