Solutionunvalidated
Change: `op[-1].value.intval <<= shift;` — In zbitshift() at psi/zrelbit.c. Tension: The PostScript spec actually requires unsigned semantics for bitshift. Outcome: To: `op[-1].value.intval = (ps_int)((ps_uint)op[-1].value.intval << shift);`.
4f9ac4de-00fa-4f30-b74f-61ce57e71516
Change: op[-1].value.intval <<= shift; — In zbitshift() at psi/zrelbit.c. Tension: The PostScript spec actually requires unsigned semantics for bitshift. Outcome: To: op[-1].value.intval = (ps_int)((ps_uint)op[-1].value.intval << shift);.