scc

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

commit 428c61c2d29f81566dc0f5f759fc6e2955c9a976
parent 81dea9fb6dfb12ac9eb61c7e9aa3fed4d17e751c
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Mon,  6 Mar 2017 14:24:10 +0100

[cc1] Remove unused label in string()

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

diff --git a/cc1/lex.c b/cc1/lex.c @@ -530,7 +530,6 @@ string(void) char *bp = yytext, c; *bp++ = '"'; -repeat: for (++input->p; (c = *input->p) != '"'; ++input->p) { if (c == '\0') { errorp("missing terminating '\"' character");