mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-10 22:43:53 +00:00
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 }
|
|
|