scc

simple C compiler
git clone git://git.2f30.org/scc
Log | Files | Refs | README | LICENSE

commit fe062f2c1e1fe5160ede00812c7ec7ebeaaf343e
parent bb18949435d6cdc7561bfe83ba159ad405d14953
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Sun, 10 Aug 2014 19:56:19 +0200

Fix string of post decrement in cc1

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

Diffstat:
Mcc1/code.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

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