shithub: scc

Download patch

ref: 6c20179c7f7cc370d02d2be76bc60ccc5f448835
parent: 95d9b9e20994d6e7b7d99c4eedd7e444d04119f6
author: Roberto E. Vargas Caballero <k0ga@shike2.com>
date: Tue Apr 19 23:36:33 EDT 2016

[cc2] Make OTMP equal to STMP

At this moment we still have correlation between S and O values
in addr(). This correlation must go out, but we have to fix other
problems first, so the easy solution is to set OTMP with the same
value than STMP.

--- a/cc2/cc2.h
+++ b/cc2/cc2.h
@@ -51,7 +51,7 @@
 	/* kind of operand */
 	/* operands */
 	OMEM     = 'M',
-	OTMP     = 'T',
+	OTMP     = 'N',
 	OAUTO    = 'A',
 	OREG     = 'R',
 	OCONST   = '#',
--