llvm-for-llvmta/test/Linker/Inputs/comdat11.ll
Nils Hölscher 3500bf8dde first commit
2022-04-25 10:02:23 +02:00

10 lines
145 B
LLVM

$foo = comdat any
@foo = global i8 1, comdat
define void @zed() {
call void @bar()
ret void
}
define void @bar() comdat($foo) {
ret void
}