remove a dead bool.
[llvm/avr.git] / test / BugPoint / crash-narrowfunctiontest.ll
blob6ad09d2e25cdf37ce0a7fb242fb146ac0892415d
1 ; Test that bugpoint can narrow down the testcase to the important function
3 ; RUN: bugpoint %s -output-prefix %t -bugpoint-crashcalls -silence-passes > /dev/null
5 define i32 @foo() { ret i32 1 }
7 define i32 @test() {
8         call i32 @test()
9         ret i32 %1
12 define i32 @bar() { ret i32 2 }