mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-10-30 15:32:52 +01:00
486c9926b7
llvm-svn: 4791
14 lines
218 B
LLVM
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 }
|
|
|