2010-08-07 23:48:09 +02:00
|
|
|
; FIXME: This likely fails on windows
|
2010-08-08 02:55:59 +02:00
|
|
|
; RUN: bugpoint -load %llvmlibsdir/BugpointPasses%shlibext %s -output-prefix %t -bugpoint-crashcalls -silence-passes
|
2010-06-07 22:58:11 +02:00
|
|
|
; RUN: llvm-dis %t-reduced-simplified.bc -o - | FileCheck %s
|
2010-08-09 17:14:06 +02:00
|
|
|
; XFAIL: mingw
|
2003-06-25 01:40:27 +02:00
|
|
|
|
2007-03-19 19:08:42 +01:00
|
|
|
; Test to make sure that arguments are removed from the function if they are
|
2010-06-07 22:28:37 +02:00
|
|
|
; unnecessary. And clean up any types that that frees up too.
|
|
|
|
|
|
|
|
; CHECK: target triple
|
|
|
|
; CHECK-NOT: struct.anon
|
|
|
|
%struct.anon = type { i32 }
|
2003-06-25 01:40:27 +02:00
|
|
|
|
2007-03-19 19:08:42 +01:00
|
|
|
declare i32 @test2()
|
|
|
|
|
2010-06-07 22:20:33 +02:00
|
|
|
; CHECK: define void @test() {
|
2010-06-07 22:28:37 +02:00
|
|
|
define i32 @test(i32 %A, %struct.anon* %B, float %C) {
|
2007-03-19 19:08:42 +01:00
|
|
|
call i32 @test2()
|
|
|
|
ret i32 %1
|
2003-06-25 01:40:27 +02:00
|
|
|
}
|