aboutsummaryrefslogtreecommitdiff
path: root/test/compound-assignment.qbe
blob: dcc7aa7a76ddd756d2f3d1595a3608b4bc38d6f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
export
function $f() {
@start.1
	%.1 =l alloc4 4
	%.2 =l alloc8 8
@body.2
	storew 0, %.1
	storel %.1, %.2
	%.3 =l loadl %.2
	%.4 =l add %.3, 4
	storel %.4, %.2
	%.5 =w loadsw %.3
	%.6 =w add %.5, 1
	storew %.6, %.3
	ret
}