shithub: scc

Download patch

ref: 836892f765058a8564522719ebac4c083ee92a47
parent: 48516d8a1bfa45b73b3f3d0b518b697b194d62c0
author: Roberto E. Vargas Caballero <k0ga@shike2.com>
date: Mon Mar 6 09:24:10 EST 2017

[cc1] Remove unused label in string()

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