bit.if1 (arity 2)ΒΆ
if x == 1 jump to l1
x is a bit, l1 is an address.
SignatureΒΆ
def if1 x, l1 @ end { ... }
Defined in bit/cond_jumps.fj β lines 29β32 (view on GitHub).
ComplexityΒΆ
Time:
@+2Space:
@+2
See the complexity glossary for what @, w, dw, dbit, n mean.
SourceΒΆ
Click to view the macro body
def if1 x, l1 @ end {
.if x, end, l1
end:
}
Depends onΒΆ
Used byΒΆ
Example usesΒΆ
bit.andinbit/logics.fjbit.cmpinbit/cond_jumps.fjbit.print_hex_uintinbit/output.fj