A brief survey of priority_queue usage in the tree turned this up
[oota-llvm.git] / test / BugPoint / remove_arguments_test.ll
index ed77da7cb830a7bbfe6cfb61a4539636775d0c40..72bd8f882a0bfbe2e6cb0a9bc5f68e88e5c99fa8 100644 (file)
@@ -1,10 +1,11 @@
-; RUN: llvm-upgrade < %s > %t1.ll
-; RUN: bugpoint %t1.ll  -bugpoint-crashcalls
+; RUN: bugpoint %s  -bugpoint-crashcalls -silence-passes
 
-; 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
 }