git: 9front

Download patch

ref: 8e18df2cbaae08f7075076572f26f80a296701c1
parent: 56143d92a6267747b3f6aaacc8cb315abff95797
author: ori <ori@cleaver>
date: Sat Jan 3 16:04:08 EST 2009

6c: remove stray non-interruptible temporary warning

we now regsalloc the values, so there's no need for the rathole warning.

--- a/sys/src/cmd/6c/cgen.c
+++ b/sys/src/cmd/6c/cgen.c
@@ -1517,7 +1517,6 @@
 
 		regsalloc(&nod0, n->right);
 		sugen(n->right, &nod0, w);
-		warn(n, "non-interruptable temporary");
 		sugen(&nod0, n->left, w);
 		sugen(&nod0, nn, w);
 		break;
--