Commit a2f0e34d by Tobias Schlüter Committed by Tobias Schlüter

* match.c (gfc_match): Eliminate dead code.

From-SVN: r81846
parent 5b5afddf
2004-05-14 Tobias Schlueter <tobias.schlueter@physik.uni-muenchen.de> 2004-05-14 Tobias Schlueter <tobias.schlueter@physik.uni-muenchen.de>
* match.c (gfc_match): Eliminate dead code.
2004-05-14 Tobias Schlueter <tobias.schlueter@physik.uni-muenchen.de>
* parse.c (gfc_statement_next_fixed): (Change from Andy's tree) * parse.c (gfc_statement_next_fixed): (Change from Andy's tree)
Detect bad continuation line in fixed form sources. Detect bad continuation line in fixed form sources.
......
...@@ -764,13 +764,6 @@ not_yes: ...@@ -764,13 +764,6 @@ not_yes:
matches++; matches++;
break; /* Skip */ break; /* Skip */
case 'I':
case 'L':
case 'C':
if (*p++ == 'e')
goto undo_expr;
break;
/* Matches that don't have to be undone */ /* Matches that don't have to be undone */
case 'o': case 'o':
case 'l': case 'l':
...@@ -780,9 +773,7 @@ not_yes: ...@@ -780,9 +773,7 @@ not_yes:
break; break;
case 'e': case 'e':
case 'E':
case 'v': case 'v':
undo_expr:
vp = va_arg (argp, void **); vp = va_arg (argp, void **);
gfc_free_expr (*vp); gfc_free_expr (*vp);
*vp = NULL; *vp = NULL;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment