testcase for PR1446
[oota-llvm.git] / test / BugPoint / remove_arguments_test.ll
index ed77da7cb830a7bbfe6cfb61a4539636775d0c40..4d2c60dc35c5551763a0f7eb65cd71b2dd11e422 100644 (file)
@@ -1,10 +1,11 @@
-; RUN: llvm-upgrade < %s > %t1.ll
-; RUN: bugpoint %t1.ll  -bugpoint-crashcalls
+; RUN: bugpoint %s  -bugpoint-crashcalls
 
-; Test to make sure that arguments are removed from the function if they are unnecessary.
+; Test to make sure that arguments are removed from the function if they are 
+; unnecessary.
 
-declare int %test2()
-int %test(int %A, int %B, float %C) {
-       call int %test2()
-       ret int %0
+declare i32 @test2()
+
+define i32 @test(i32 %A, i32 %B, float %C) {
+       call i32 @test2()
+       ret i32 %1
 }