c4f4bc0cfa
Worker C found the defect while characterising an above-ceiling row: the Phase 10 fix that made maspsx honour cc1's explicit `#nop` marker unconditionally is wrong for a bare-symbol store consumer, because the store's own `lui $at` expansion fills the delay slot and the marker is SPURIOUS. On 0x800AFDBC the original is `lhu` / `lui at` / `sh` with NO nop, and honouring the marker costs 2 instructions -- turning a row that was otherwise byte-identical into a LENGTH-MISMATCH. But the fix is genuinely needed for 0x80107C5C (112 vs 108). So the two rows want opposite behaviour from the same instruction shape, and the honest resolution is to make it a per-region mode rather than a global default. `maspsx=nopmarker` -> --honour-nop-marker (default OFF) VERIFIED BOTH WAYS: make check with the mode OFF -> regions=510 AGREE, differing_bytes=0 MATCH, 253 tests OK 0x80107C5C WITH the mode -> 112 B, differing_bytes=0 MATCH 0x80107C5C WITHOUT it -> 108 B LENGTH-MISMATCH So the default is the long-standing behaviour, and rows that need the marker opt in. The tracked patch is regenerated and verified to reproduce both modified files exactly from the pristine pinned checkout (tools/maspsx is git-ignored, so the patch is the only reproducible carrier). docs/SETUP.md records the correction. This is the third time this phase a worker found a defect in work the coordinator had already shipped as verified -- the pattern is worth noting: a fix proven regression-free against the CORPUS can still be wrong for an UNMATCHED row, because the corpus only exercises the paths that already work.