scc

simple c99 compiler
git clone git://git.simple-cc.org/scc
Log | Files | Refs | Submodules | README | LICENSE

commit 1341cf53a7115b1c89a2d2f836aef36524a6745e
parent 2afac7e64519cbcbf3d081a9061329badcf88344
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Sat, 15 Aug 2015 11:14:47 +0200

Add name to the operand enum

This is helpful debugging.

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

diff --git a/cc1/cc1.h b/cc1/cc1.h @@ -232,7 +232,7 @@ enum tokens { }; /* operations */ -enum { +enum op { OPTR, OADD, OMUL,