dplassgit / d2lang

D2 is a strongly-typed, statically-typed, (mostly) inferred-type compiled language.
MIT License
6 stars 0 forks source link

Boolean `NOT` operation can be much simpler #237

Closed dplassgit closed 1 year ago

dplassgit commented 1 year ago

Replace https://github.com/dplassgit/d2lang/blob/aada8bc0c3adfd23ac0c262b1d4e541ae6979b08/src/com/plasstech/lang/d2/codegen/x64/NasmCodeGenerator.java#L693-L695

with just xor 0x01

dplassgit commented 1 year ago

I think this is what I meant:

mov dest, source
xor dest, 0x01