summaryrefslogtreecommitdiff
path: root/test/BugPoint/remove_arguments_test.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/BugPoint/remove_arguments_test.ll')
-rw-r--r--test/BugPoint/remove_arguments_test.ll15
1 files changed, 8 insertions, 7 deletions
diff --git a/test/BugPoint/remove_arguments_test.ll b/test/BugPoint/remove_arguments_test.ll
index ed77da7cb8..4d2c60dc35 100644
--- a/test/BugPoint/remove_arguments_test.ll
+++ b/test/BugPoint/remove_arguments_test.ll
@@ -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
}