mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-09-12 22:42:53 -06:00

Another instance where we needlessly materialized constant zero in a register. We can just write the carry flag directly. Before: 0x5280001a mov w26, #0x0 ; =0 0x1a1f035a adc w26, w26, wzr After: 0x1a9f37fa cset w26, hs