scc

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

commit 383358717731b29f0cbafc1f31d87fb79c1e7918
parent 99cb9c06c29a3c5280eed66de14a98f0a0e24503
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Thu, 17 Apr 2014 15:46:31 +0200

Fix emit of division operator

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

diff --git a/code.c b/code.c @@ -16,7 +16,7 @@ char *opcodes[] = { [OSIZE] = "#", [OPTR] = "@", [OMOD] = "*", - [ODIV] = "/'", + [ODIV] = "/", [OSHL] = "l", [OSHR] = "r", [OLT] = "<",