llvm-6502/test/BugPoint/crash-narrowfunctiontest.ll

14 lines
218 B
LLVM
Raw Normal View History

; 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 }