Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
WIP: Add workaround for instruction that fails to encode
The following is no longer legal in asmjit: a.cmp(ARG3, TMP2, a64::uxth(0)); The intention is to produce the following instruction: cmp ARG3, TMP2, uxth Until we find out how to express this with the new asmjit, split the instruction into two instructions: and TMP2, TMP2, 0xffff cmp ARG3, TMP2
- Loading branch information