Disable a consistency check.
[oota-llvm.git] / test / Linker / comdat11.ll
1 ; RUN: llvm-link -S %s %p/Inputs/comdat11.ll -o - | FileCheck %s
2
3 $foo = comdat any
4 @foo = global i8 0, comdat
5
6 ; CHECK: @foo = global i8 0, comdat
7
8 ; CHECK: define void @zed() {
9 ; CHECK:   call void @bar()
10 ; CHECK:   ret void
11 ; CHECK: }
12
13 ; CHECK: declare void @bar()