diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1994-03-25 14:17:54 -0500 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1994-03-25 14:17:54 -0500 |
commit | d6924effb5224d4edb9bebc9f26453480b2d32c7 (patch) | |
tree | e95fe7895632dc18b94546312d59b50fd30dfeb7 /gcc/scan.c | |
parent | 0df564e54c26cab44383e1b2111d5948b8ec46b4 (diff) | |
download | gcc-d6924effb5224d4edb9bebc9f26453480b2d32c7.tar.gz |
(get_token): Remove decl of unused variable QUOTE.
(get_token): Remove unused label AGAIN.
From-SVN: r6892
Diffstat (limited to 'gcc/scan.c')
-rw-r--r-- | gcc/scan.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/gcc/scan.c b/gcc/scan.c index 03b7c35cfd4..17e9898497f 100644 --- a/gcc/scan.c +++ b/gcc/scan.c @@ -1,5 +1,5 @@ -/* scan.c - Utility functions for scan-decls and fix-header programs. - Copyright (C) 1993 Free Software Foundation, Inc. +/* Utility functions for scan-decls and fix-header programs. + Copyright (C) 1993, 1994 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the @@ -208,7 +208,6 @@ get_token (fp, s) s->ptr = s->base; retry: c = ' '; - again: c = skip_spaces (fp, c); if (c == '\n') { @@ -254,7 +253,6 @@ get_token (fp, s) } if (c == '\'' || c == '"') { - int quote = c; c = scan_string (fp, s, c); ungetc (c, fp); return c == '\'' ? CHAR_TOKEN : STRING_TOKEN; |