scc

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

commit 4878c57251c7f954a2f0b15d00c29e73a44f7c84
parent 523e296ed5f0134551bc487706433e3649b5c801
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Mon,  6 Mar 2017 13:21:07 +0100

[cc1] Remove non used variable in pop()

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

diff --git a/cc1/decl.c b/cc1/decl.c @@ -91,7 +91,6 @@ static int pop(struct declarators *dp, struct decl *dcl) { struct declarator *p; - Symbol **bp; if (dp->nr == 0) return 0; @@ -385,7 +384,6 @@ static void krfun(struct declarators *dp, Symbol *pars[], unsigned *ntypep, unsigned *nparsp) { - Symbol *sym; int toomany = 0;