commit 56114f333a1bf506d457033591b0101f3dc958b4
parent 695cff844c8fb4d44a68da49758db726f47d9288
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date: Tue, 19 May 2015 15:55:33 +0200
Fix syntax error in symbol.c
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/cc1/symbol.c b/cc1/symbol.c
@@ -45,7 +45,7 @@ popctx(void)
hp->next = sym;
hp = sym;
continue;
- else if (sym->ns == NS_LABEL && !(sym->flags & ISDEFINED)) {
+ } else if (sym->ns == NS_LABEL && !(sym->flags & ISDEFINED)) {
/* FIXME: don't recover in this point */
error("label '%s' is not defined", sym->name);
} else if (sym->ns == NS_TAG) {