Add support for FreeBSD/i386 ELF.
[deliverable/binutils-gdb.git] / gdb / ch-exp.c
index 62e9bfd1b79aa8964485ca0ca06d8f7fbc3f40e1..78924756ef383e01d58d48ceb2ff6fdbe6397252 100644 (file)
@@ -217,7 +217,7 @@ peek_token_ (i)
      int i;
 {
   if (i > MAX_LOOK_AHEAD)
-    fatal ("internal error - too much lookahead");
+    internal_error ("ch-exp.c - too much lookahead");
   if (terminal_buffer[i] == TOKEN_NOT_READ)
     {
       terminal_buffer[i] = ch_lex ();
@@ -235,7 +235,7 @@ pushback_token (code, node)
 {
   int i;
   if (terminal_buffer[MAX_LOOK_AHEAD] != TOKEN_NOT_READ)
-    fatal ("internal error - cannot pushback token");
+    internal_error ("ch-exp.c - cannot pushback token");
   for (i = MAX_LOOK_AHEAD; i > 0; i--)
     {
       terminal_buffer[i] = terminal_buffer[i - 1];
@@ -269,9 +269,7 @@ require (token)
 {
   if (PEEK_TOKEN () != token)
     {
-      char buf[80];
-      sprintf (buf, "internal parser error - expected token %d", (int) token);
-      fatal (buf);
+      internal_error ("ch-exp.c - expected token %d", (int) token);
     }
   FORWARD_TOKEN ();
 }
@@ -2194,8 +2192,8 @@ ch_lex ()
            case LOC_OPTIMIZED_OUT:
              error ("Symbol \"%s\" names no location.", inputname);
              break;
-           case LOC_UNRESOLVED:
-             error ("unhandled SYMBOL_CLASS in ch_lex()");
+           default:
+             internal_error ("unhandled SYMBOL_CLASS in ch_lex()");
              break;
            }
        }
This page took 0.027336 seconds and 4 git commands to generate.