+Thu Nov 4 13:33:46 1999 Richard Henderson <rth@cygnus.com>
+
+ * rtl.c (read_rtx): Use fatal_with_file_and_line not fatal.
+
Thu Nov 4 12:49:52 1999 Richard Henderson <rth@cygnus.com>
* cse.c (cse_main): Use xmalloc, not alloca.
#include "ggc.h"
#include "obstack.h"
#include "toplev.h"
+
#define obstack_chunk_alloc xmalloc
#define obstack_chunk_free free
}
if (tmp_code == UNKNOWN)
- fatal ("Unknown rtx read in rtl.read_rtx(). Code name was %s .", tmp_char);
+ fatal_with_file_and_line (infile, "unknown rtx code `%s'", tmp_char);
/* (NIL) stands for an expression that isn't there. */
if (tmp_code == NIL)
break;
if (j == MAX_MACHINE_MODE)
- fatal ("Unknown mode read in rtl.read_rtx(). Mode name was %s.",
- tmp_char);
+ fatal_with_file_and_line (infile, "unknown mode `%s'", tmp_char);
PUT_MODE (return_rtx, (enum machine_mode) j);
}