[NFC] Maintainers.rst: align email address formatting
[llvm-project.git] / llvm / test / tools / llvm-reduce / remove-function-bodies-comdat.ll
blobbfa516ed3a763e4ca59a380ec2de41cdd6138d07
1 ; RUN: llvm-reduce --abort-on-invalid-reduction --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