[Frontend] Remove unused includes (NFC) (#116927)
[llvm-project.git] / llvm / test / BugPoint / crash-narrowfunctiontest.ll
blob741a3a354537e813115e39d8fa69f694a31bbf79
1 ; Test that bugpoint can narrow down the testcase to the important function
3 ; RUN: bugpoint -load %llvmshlibdir/BugpointPasses%pluginext %s -output-prefix %t -bugpoint-crashcalls -silence-passes > /dev/null
4 ; REQUIRES: plugins
6 define i32 @foo() { ret i32 1 }
8 define i32 @test() {
9         call i32 @test()
10         ret i32 %1
13 define i32 @bar() { ret i32 2 }