scc

simple c99 compiler
git clone git://git.simple-cc.org/scc
Log | Files | Refs | Submodules | README | LICENSE

commit 5e8ed05e7151c938cdc3342d9dea15b21a8e9491
parent 4730c12530c7db4e61d812e9f45d631d7bc1bdfe
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Thu, 10 Sep 2015 18:51:01 +0200

Remove unused variable in integer()

Diffstat:
Mcc1/lex.c | 1-
1 file changed, 0 insertions(+), 1 deletion(-)

diff --git a/cc1/lex.c b/cc1/lex.c @@ -252,7 +252,6 @@ integer(char *s, char base) Type *tp; Symbol *sym; unsigned size, sign; - long v; for (size = sign = 0; ; ++input->p) { switch (toupper(*input->p)) {