commit 5e8ed05e7151c938cdc3342d9dea15b21a8e9491
Author:     Roberto E. Vargas Caballero <[email protected]>
AuthorDate: Thu Sep 10 18:51:01 2015 +0200
Commit:     Roberto E. Vargas Caballero <[email protected]>
CommitDate: Thu Sep 10 18:51:01 2015 +0200

    Remove unused variable in integer()

diff --git a/cc1/lex.c b/cc1/lex.c
index 501e0d4..6bfbc03 100644
--- 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)) {

Reply via email to