zpu: managed to compile program that writes constant to global variable
[llvm/zpu.git] / test / BugPoint / crash-narrowfunctiontest.ll
blob18a31eb45d36d7e41de0f046b7dc4fe621f8f18e
1 ; Test that bugpoint can narrow down the testcase to the important function
2 ; FIXME: This likely fails on windows
4 ; RUN: bugpoint -load %llvmlibsdir/BugpointPasses%shlibext %s -output-prefix %t -bugpoint-crashcalls -silence-passes > /dev/null
5 ; XFAIL: mingw
7 define i32 @foo() { ret i32 1 }
9 define i32 @test() {
10         call i32 @test()
11         ret i32 %1
14 define i32 @bar() { ret i32 2 }