scc

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

commit f00413b6a611d855fc398604c10a5b8c0afa596b
parent 9f2e3f1c43c67f3ae3cca01bced10b670600c88c
Author: Hiltjo Posthuma <hiltjo@codemadness.org>
Date:   Fri, 17 Jul 2015 20:29:58 +0200

fix missing ;

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

diff --git a/cc1/cpp.c b/cc1/cpp.c @@ -447,7 +447,7 @@ ifclause(int isdef) if (cppctx == NR_COND-1) error("too much nesting levels of conditional inclusion"); - n = cppctx++ + n = cppctx++; if (yytoken != IDEN) { error("no macro name given in #%s directive", (isdef) ? "ifdef" : "ifndef");