[hackers] [scc] Small style change in expr.c || Roberto E. Vargas Caballero
commit e6183c2b047fec411a87bcb04ccc3833ec846b20
Author: Roberto E. Vargas Caballero <k0ga_AT_shike2.com>
AuthorDate: Sat Jul 18 10:14:22 2015 +0200
Commit: Roberto E. Vargas Caballero <k0ga_AT_shike2.com>
CommitDate: Sat Jul 18 10:14:22 2015 +0200
Small style change in expr.c
diff --git a/cc1/expr.c b/cc1/expr.c
index fe2de95..be3840f 100644
--- a/cc1/expr.c
+++ b/cc1/expr.c
_AT_@ -530,7 +530,8 @@ postfix(void)
lp = array(lp, rp);
expect(']');
break;
- case DEC: case INC:
+ case DEC:
+ case INC:
lp = incdec(lp, (yytoken == INC) ? OINC : ODEC);
next();
break;
_AT_@ -595,7 +596,8 @@ unary(void)
next();
tp = (yytoken == '(') ? sizeexp() : typeof(unary());
return sizeofnode(tp);
- case INC: case DEC:
+ case INC:
+ case DEC:
op = (yytoken == INC) ? OA_ADD : OA_SUB;
next();
return incdec(unary(), op);
Received on Sat Jul 18 2015 - 10:27:46 CEST
This archive was generated by hypermail 2.3.0
: Sat Jul 18 2015 - 10:36:18 CEST