git: 9front

Download patch

ref: 421b1cc87b0a7ad10548b220b108e2291bfe36f0
parent: 4fa9d73133e6e234e3a600747a8e9031571ab167
author: cinap_lenrek <cinap_lenrek@felloff.net>
date: Mon Feb 9 10:50:20 EST 2026

6c: disable storeprop optimisation (temporarily)

Looks like it has broken something in ghostscript.
Disable for now until i have time investigating.

--- a/sys/src/cmd/6c/peep.c
+++ b/sys/src/cmd/6c/peep.c
@@ -105,6 +105,7 @@
 		case AMOVSD:
 			if(!regtyp(&p->to)){
 				/* registerize variable loads following stores */
+				if(0)	/* not yet */
 				if(regtyp(&p->from) && (p->to.type == D_AUTO || p->to.type == D_PARAM))
 					storeprop(p->as, &p->from, &p->to, r->s1);
 				break;
--