zpu: managed to compile program that writes constant to global variable
[llvm/zpu.git] / test / BugPoint / remove_arguments_test.ll
blob791ec69a23d2fa9520054d80c57f00b1c28ad6fa
1 ; FIXME: This likely fails on windows
2 ; RUN: bugpoint -load %llvmlibsdir/BugpointPasses%shlibext %s -output-prefix %t -bugpoint-crashcalls -silence-passes
3 ; RUN: llvm-dis %t-reduced-simplified.bc -o - | FileCheck %s
4 ; XFAIL: mingw
6 ; Test to make sure that arguments are removed from the function if they are 
7 ; unnecessary. And clean up any types that that frees up too.
9 ; CHECK: target triple
10 ; CHECK-NOT: struct.anon
11 %struct.anon = type { i32 }
13 declare i32 @test2()
15 ; CHECK: define void @test() {
16 define i32 @test(i32 %A, %struct.anon* %B, float %C) {
17         call i32 @test2()
18         ret i32 %1