llvm-for-llvmta/test/Linker/Inputs/comdat11.ll

10 lines
145 B
LLVM
Raw Permalink Normal View History

2022-04-25 10:02:23 +02:00
$foo = comdat any
@foo = global i8 1, comdat
define void @zed() {
call void @bar()
ret void
}
define void @bar() comdat($foo) {
ret void
}