1 ; Test that llvm-reduce can remove uninteresting functions as well as
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() {
13 ; CHECK: interesting()
14 define i32 @interesting() {
16 ; CHECK: call i32 @interesting()
17 %call2 = call i32 @interesting()
18 %call = call i32 @uninteresting1()
22 define i32 @uninteresting2() {
27 declare void @uninteresting3()