[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / llvm / test / tools / llvm-reduce / remove-function-bodies-comdat.ll
blob65c210e70d4b2d7015b2e5cf09f02ca9f1ffd5c1
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
3 ; RUN: opt -passes=verify %t
5 ; CHECK-FINAL-NOT: = comdat
6 ; CHECK-INTERESTINGNESS: @callee(
7 ; CHECK-FINAL: declare void @callee()
9 $foo = comdat any
11 define void @callee() comdat($foo) {
12   ret void
15 ; CHECK-ALL: define void @caller()
16 define void @caller() {
17 entry:
18 ; CHECK-ALL: call void @callee()
19 ; CHECK-ALL: ret void
20   call void @callee()
21   ret void