1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-27 22:12:47 +01:00
llvm-mirror/test/Regression/BugPoint/crash-narrowfunctiontest.ll
Chris Lattner 486c9926b7 Checkin testcases for bugpoint
llvm-svn: 4791
2002-11-20 22:30:02 +00:00

14 lines
218 B
LLVM

; Test that bugpoint can narrow down the testcase to the important function
;
; RUN: bugpoint %s -bugpoint-crashcalls
int %foo() { ret int 1 }
int %test() {
call int %test()
ret int %0
}
int %bar() { ret int 2 }