mir
mir copied to clipboard
Missing `MVN`/`NOT` instruction
There's not bitwise MIR_NOT instruction
Maybe it's intended?
I guess i can do: MIR_XOR value, 0xffff
yeah you can compliment it with a XOR with FFs (I recommend using ~0 to not make mistakes). Even if intended I personally think it would be better to have it for completeness (even if the code gen can handle it)