(get_token): Remove decl of unused variable QUOTE.
authorRichard Kenner <kenner@gcc.gnu.org>
Fri, 25 Mar 1994 19:17:54 +0000 (14:17 -0500)
committerRichard Kenner <kenner@gcc.gnu.org>
Fri, 25 Mar 1994 19:17:54 +0000 (14:17 -0500)
(get_token): Remove unused label AGAIN.

From-SVN: r6892

gcc/scan.c

index 03b7c35..17e9898 100644 (file)
@@ -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;