ada-lex.l: Remove useless rule whose right-context clause
authorPaul N. Hilfinger <hilfinger@adacore.com>
Sat, 9 Oct 2004 04:56:48 +0000 (04:56 +0000)
committerPaul N. Hilfinger <hilfinger@adacore.com>
Sat, 9 Oct 2004 04:56:48 +0000 (04:56 +0000)
causes unreferenced static function warning for yyrealloc.
(ada_flex_use): Remove the artificial reference to yyrealloc.

gdb/ChangeLog
gdb/ada-lex.l

index 5601d9a..2a7c4da 100644 (file)
@@ -1,3 +1,9 @@
+2004-10-09  Paul Hilfinger  <hilfingr@nile.gnat.com>
+
+       * ada-lex.l: Remove useless rule whose right-context clause
+       causes unreferenced static function warning for yyrealloc.
+       (ada_flex_use): Remove the artificial reference to yyrealloc.
+
 2004-10-08  Andrew Cagney  <cagney@gnu.org>
 
        * target.h (struct target_ops): Rename to_xfer_memory to
index e4b8999..ddb6026 100644 (file)
@@ -154,8 +154,6 @@ static int find_dot_all (const char *);
                   return CHARLIT;
                }
 
-\"{OPER}\"/{WHITE}*"(" { return processId (yytext, yyleng); }
-
 <INITIAL>\"    {
                   tempbuf_len = 0;
                   BEGIN IN_STRING;
@@ -926,5 +924,5 @@ yywrap(void)
 typedef void (*dummy_function) ();
 dummy_function ada_flex_use[] = 
 { 
-  (dummy_function) yyrealloc, (dummy_function) yyunput
+  (dummy_function) yyunput
 };