blob: ef0db8d980b61967f99553df6fe0c348b23339f6 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001; Test that bugpoint can narrow down the testcase to the important function
2;
3; RUN: bugpoint %s -bugpoint-crashcalls
4
5define i32 @foo() { ret i32 1 }
6
7define i32 @test() {
8 call i32 @test()
9 ret i32 %1
10}
11
12define i32 @bar() { ret i32 2 }