From a81a19be94c21fffa5b92aeb6bd484f50f5e62c0 Mon Sep 17 00:00:00 2001 From: Hiltjo Posthuma Date: Fri, 17 Jul 2015 20:29:58 +0200 Subject: [PATCH 3/3] fix missing ; --- cc1/cpp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cc1/cpp.c b/cc1/cpp.c index 3e10e2e..4df8244 100644 --- 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"); -- 2.3.0