1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 19:42:54 +02:00
llvm-mirror/test/BugPoint/remove_arguments_test.ll
Reid Spencer 0782164cf7 Don't upgrade these.
llvm-svn: 35166
2007-03-19 18:08:42 +00:00

12 lines
236 B
LLVM

; RUN: bugpoint %s -bugpoint-crashcalls
; Test to make sure that arguments are removed from the function if they are
; unnecessary.
declare i32 @test2()
define i32 @test(i32 %A, i32 %B, float %C) {
call i32 @test2()
ret i32 %1
}