aboutsummaryrefslogtreecommitdiff
path: root/test/varargs.qbe
blob: 16db877288e660e29dc57f0f43b0c5dfa4549f77 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
export
function $f(w %.1, ...) {
@start.1
	%.2 =l alloc4 4
	storew %.1, %.2
	%.3 =l alloc8 24
@body.2
	vastart %.3
@while_cond.3
	%.4 =w loadsw %.2
	jnz %.4, @while_body.4, @while_join.5
@while_body.4
	%.5 =w vaarg %.3
	%.6 =s vaarg %.3
	%.7 =l vaarg %.3
	%.8 =w loadsw %.2
	%.9 =w sub %.8, 1
	storew %.9, %.2
	jmp @while_cond.3
@while_join.5
	ret
}