2009-09-07 19:26:18 +00:00
|
|
|
; RUN: bugpoint %s -output-prefix %t -bugpoint-crashcalls -silence-passes
|
2010-06-07 20:20:33 +00:00
|
|
|
; RUN: llvm-dis remove_arguments_test.ll.tmp-reduced-simplified.bc -o - | FileCheck %s
|
2003-06-24 23:40:27 +00:00
|
|
|
|
2007-03-19 18:08:42 +00:00
|
|
|
; Test to make sure that arguments are removed from the function if they are
|
|
|
|
; unnecessary.
|
2003-06-24 23:40:27 +00:00
|
|
|
|
2007-03-19 18:08:42 +00:00
|
|
|
declare i32 @test2()
|
|
|
|
|
2010-06-07 20:20:33 +00:00
|
|
|
; CHECK: define void @test() {
|
2007-03-19 18:08:42 +00:00
|
|
|
define i32 @test(i32 %A, i32 %B, float %C) {
|
|
|
|
call i32 @test2()
|
|
|
|
ret i32 %1
|
2003-06-24 23:40:27 +00:00
|
|
|
}
|