blob: 8927ba1905eb78a7dc559cb305ee248573979d77 [file] [log] [blame]
Chris Lattnerd9624b02002-11-20 22:30:02 +00001; Test that bugpoint can narrow down the testcase to the important function
2;
3; RUN: bugpoint %s -bugpoint-crashcalls
4
5int %foo() { ret int 1 }
6
7int %test() {
8 call int %test()
9 ret int %0
10}
11
12int %bar() { ret int 2 }
13