Mercurial > hg > CbC > CbC_llvm
annotate llvm/test/BugPoint/crash-narrowfunctiontest.ll @ 227:21e6aa2e49ef
...
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Mon, 19 Jul 2021 06:57:16 +0900 |
parents | 2e18cbf3894f |
children |
rev | line source |
---|---|
150 | 1 ; Test that bugpoint can narrow down the testcase to the important function |
2 ; | |
207 | 3 ; RUN: bugpoint -load %llvmshlibdir/BugpointPasses%pluginext %s -output-prefix %t -bugpoint-crashcalls -silence-passes > /dev/null |
150 | 4 ; REQUIRES: plugins |
5 | |
6 define i32 @foo() { ret i32 1 } | |
7 | |
8 define i32 @test() { | |
9 call i32 @test() | |
10 ret i32 %1 | |
11 } | |
12 | |
13 define i32 @bar() { ret i32 2 } |