We can encode more constants into 12-bit immediates if we do the following
rewrite for comparisons with odd constants:
A >= B + 1
==> A - 1 >= B
==> A > B
This crate contains the core Cranelift code generator. It translates code from an intermediate representation into executable machine code.