shithub: scc

Download patch

ref: fe062f2c1e1fe5160ede00812c7ec7ebeaaf343e
parent: bb18949435d6cdc7561bfe83ba159ad405d14953
author: Roberto E. Vargas Caballero <[email protected]>
date: Sun Aug 10 15:56:19 EDT 2014

Fix string of post decrement in cc1

it had ;= instead of ;- that it is the correct value.

--- a/cc1/code.c
+++ b/cc1/code.c
@@ -16,7 +16,7 @@
 	[OMUL] = "*",
 	[OARY] = "'",
 	[OINC] = ";+",
-	[ODEC] =  ";=",
+	[ODEC] =  ";-",
 	[OSIZE] = "#",
 	[OPTR] = "@",
 	[OMOD] = "*",