program IfStatement {
section module {
}
section data {
int rax = 0
string str_0 = "yeah"
string str_1 = "nope"
string fmt_str = "%s "
string newline = "\n"
int x = 0
}
section code {
start:
mov x, 10
cmp x, 1
jle ELSE_0
cmp x, 12
jge ELSE_0
print fmt_str, str_0
print newline
jmp ENDIF_1
ELSE_0:
print fmt_str, str_1
print newline
ENDIF_1:
done
}
}