scc

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

commit f71c7191e4e1498955910bf1db4525343eaeb073
parent 83641b5afb00ef76a2b397a2591a705dd1488c7f
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Fri, 14 Aug 2015 18:42:48 +0200

Remove parenthesed expressions from primary()

This job is done in cast() now.

Diffstat:
Mcc1/expr.c | 5-----
1 file changed, 0 insertions(+), 5 deletions(-)

diff --git a/cc1/expr.c b/cc1/expr.c @@ -725,11 +725,6 @@ primary(void) np = varnode(yylval.sym); next(); break; - case '(': - next(); - np = expr(); - expect(')'); - break; default: unexpected(); }