aboutsummaryrefslogtreecommitdiff
path: root/tests/subtract-pointer.qbe
blob: b075ce4efd582eee2f9b92306def408dcfab0cc3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
export
function $f(l %.1, l %.3) {
@start.1
	%.2 =l alloc8 8
	storel 0, %.2
	storel %.1, %.2
	%.4 =l alloc8 8
	storel 0, %.4
	storel %.3, %.4
@body.2
	%.5 =l loadl %.2
	%.6 =l copy %.5
	%.7 =l loadl %.4
	%.8 =l copy %.7
	%.9 =l sub %.6, %.8
	%.10 =l div %.9, 4
	ret
}