brintos

brintos / llvm-project-archived public Read only

0
0
Text · 349 B · 741a3a3 Raw
14 lines · plain
1; Test that bugpoint can narrow down the testcase to the important function2;3; RUN: bugpoint -load %llvmshlibdir/BugpointPasses%pluginext %s -output-prefix %t -bugpoint-crashcalls -silence-passes > /dev/null4; REQUIRES: plugins5 6define i32 @foo() { ret i32 1 }7 8define i32 @test() {9	call i32 @test()10	ret i32 %111}12 13define i32 @bar() { ret i32 2 }14