[JITLink] Silence GCC warnings. NFC.
[llvm-complete.git] / test / Reduce / remove-funcs.ll
blob8e9b2579a974b0e8db23972cbaf6bb6d89525248
1 ; Test that llvm-reduce can remove uninteresting functions as well as
2 ; their InstCalls.
4 ; RUN: rm -rf %t
5 ; RUN: llvm-reduce --test %python --test-arg %p/Inputs/remove-funcs.py %s -o %t
6 ; RUN: cat %t | FileCheck -implicit-check-not=uninteresting %s
8 define i32 @uninteresting1() {
9 entry:
10   ret i32 0
13 ; CHECK: interesting()
14 define i32 @interesting() {
15 entry:
16   ; CHECK: call i32 @interesting()
17   %call2 = call i32 @interesting()
18   %call = call i32 @uninteresting1()
19   ret i32 5
22 define i32 @uninteresting2() {
23 entry:
24   ret i32 0
27 declare void @uninteresting3()