Thumb2 pre/post indexed loads.
[oota-llvm.git] / test / BugPoint / crash-narrowfunctiontest.ll
1 ; Test that bugpoint can narrow down the testcase to the important function
2 ;
3 ; RUN: bugpoint %s -bugpoint-crashcalls -silence-passes > /dev/null
4
5 define i32 @foo() { ret i32 1 }
6
7 define i32 @test() {
8         call i32 @test()
9         ret i32 %1
10 }
11
12 define i32 @bar() { ret i32 2 }