Files
clang-p2996/lld/test/wasm/Inputs/ctor-setup-call-def.s
Dan Gohman 950ae43091 [WebAssembly] GC constructor functions in otherwise unused archive objects
This allows `__wasilibc_populate_libpreopen` to be GC'd in more cases
where it isn't needed, including when linked from Rust's libstd.

Differential Revision: https://reviews.llvm.org/D85062
2020-10-12 18:54:57 -07:00

22 lines
397 B
ArmAsm

# Like Inputs/ctor-setup.s, except it calls `def` instead of `lib_func`,
# so it pulls in the .o file containing `ctor`.
.section .text._start,"",@
.globl _start
_start:
.functype _start () -> ()
end_function
.section .text.setup,"",@
.globl setup
setup:
.functype setup () -> ()
call def
end_function
.section .init_array,"",@
.p2align 2
.int32 setup
.functype def () -> ()