fc7ebc4b2d
Worker B's 0x80050CA8 (120 B, first attempt). Lever: the status word is masked by TWO separate statements (&= -3; &= -5;), and the original emits one load, two ands against two different constants, one store. Combining the masks folds to a single and and LOSES an instruction -- the same principle as finding 81 (a slot stored twice is two statements) applied to read-modify-write. Companion: the status load is hoisted above nine halfword clears, so the clears' source order is only observable through the store order.