Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / lld / test / wasm / Inputs / comdat2.ll
blob8c4293825811586eb301f64d6c00d78a8987dd30
1 target triple = "wasm32-unknown-unknown"
3 $foo = comdat any
5 @constantData = constant [3 x i8] c"abc", comdat($foo)
7 define i32 @comdatFn() comdat($foo) {
8   ret i32 ptrtoint (ptr @constantData to i32)
11 define internal void @do_init() comdat($foo) {
12   ret void
15 %0 = type { i32, ptr, ptr }
16 @llvm.global_ctors = appending global [1 x %0] [ %0 { i32 65535, ptr @do_init, ptr @constantData }]
18 ; Everything above this is part of the `foo` comdat group
20 define i32 @callComdatFn2() {
21   ret i32 ptrtoint (ptr @comdatFn to i32)