* config/djgpp/fnchange.lst: Add mappings for linux-ppc-low.c and
[deliverable/binutils-gdb.git] / gdb / ada-lex.l
index e4b8999d4e4015b84ec02b0d5f0bfddae49abe57..6aa3b7d5bff5fff3062c6d8d8a79422f1f30b2a8 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;
@@ -347,7 +345,7 @@ resize_tempbuf (unsigned int n)
   if (tempbufsize < n)
     {
       tempbufsize = (n+63) & ~63;
-      tempbuf = (char *) realloc (tempbuf, tempbufsize);
+      tempbuf = xrealloc (tempbuf, tempbufsize);
     }
 }
 
@@ -926,5 +924,5 @@ yywrap(void)
 typedef void (*dummy_function) ();
 dummy_function ada_flex_use[] = 
 { 
-  (dummy_function) yyrealloc, (dummy_function) yyunput
+  (dummy_function) yyunput
 };
This page took 0.023508 seconds and 4 git commands to generate.