[Frontend] Remove unused includes (NFC) (#116927)
[llvm-project.git] / llvm / test / tools / llvm-reduce / remove-function-bodies.ll
blobc70df0e38f3dd420b895b08e20607a3a94a47fb6
1 ; RUN: llvm-reduce --test FileCheck --test-arg --check-prefixes=CHECK-ALL,CHECK-INTERESTINGNESS --test-arg %s --test-arg --input-file %s -o %t
2 ; RUN: cat %t | FileCheck --check-prefixes=CHECK-ALL,CHECK-FINAL %s
4 ; CHECK-INTERESTINGNESS: @callee(
5 ; CHECK-FINAL: declare void @callee()
6 define void @callee() {
7   ret void
10 ; CHECK-ALL: define void @caller()
11 define void @caller() {
12 entry:
13 ; CHECK-ALL: call void @callee()
14 ; CHECK-ALL: ret void
15   call void @callee()
16   ret void