aboutsummaryrefslogtreecommitdiff
path: root/test/conditional-constant.qbe
blob: a14e0509c4f4c18b42aae42d504e0af23eee13f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
export
function w $main() {
@start.1
@body.2
	%.1 =w cnew 123, 123
	jnz %.1, @if_true.3, @if_false.4
@if_true.3
	ret 1
@if_false.4
	%.2 =w cnew 456, 456
	jnz %.2, @if_true.5, @if_false.6
@if_true.5
	ret 1
@if_false.6
	ret 0
}