1# Like Inputs/ctor-start.s, except it calls `lib_func` from a ctor
2# instead of from `_start`.
3
4.functype       lib_func () -> ()
5
6	.globl	_start
7_start:
8	.functype	_start () -> ()
9	end_function
10
11	.globl	setup
12setup:
13	.functype	setup () -> ()
14	call	lib_func
15	end_function
16
17	.section	.init_array,"",@
18	.p2align	2
19	.int32	setup
20
21