[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / llvm / test / tools / llvm-reduce / temporary-files-as-bitcode.ll
blob2ffe18ddf2de479fa24711f705aef61e260cff28
1 ; RUN: llvm-reduce -write-tmp-files-as-bitcode --delta-passes=function-bodies,basic-blocks %s -o %t \
2 ; RUN:     --test %python --test-arg %p/Inputs/llvm-dis-and-filecheck.py --test-arg llvm-dis --test-arg FileCheck --test-arg --check-prefixes=CHECK-ALL,CHECK-INTERESTINGNESS --test-arg %s
3 ; RUN: FileCheck --check-prefixes=CHECK-ALL,CHECK-FINAL %s < %t
5 ; CHECK-INTERESTINGNESS: @callee(
6 ; CHECK-FINAL: declare void @callee()
7 define void @callee() {
8   ret void
11 ; CHECK-ALL: define void @caller()
12 define void @caller() {
13 entry:
14 ; CHECK-ALL: call void @callee()
15 ; CHECK-ALL: ret void
16   call void @callee()
17   ret void