* diagnostic.c (internal_error): Say "confused" after 1 error, not
two. Print file and line with "confused" message.
From-SVN: r39543
2001-02-08 Jason Merrill <jason@redhat.com>
+ * diagnostic.c (internal_error): Say "confused" after 1 error, not
+ two. Print file and line with "confused" message.
+
* dwarf2out.c (dwarf2out_line): Include filename in -dA output.
Thu Feb 8 11:21:28 2001 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
msgid = va_arg (ap, const char *);
#endif
- if (errorcount > 1 || sorrycount > 0)
+ if (errorcount > 0 || sorrycount > 0)
{
- fprintf (stderr, "confused by earlier errors, bailing out\n");
+ fprintf (stderr, "%s:%d: confused by earlier errors, bailing out\n",
+ input_filename, lineno);
exit (FATAL_EXIT_CODE);
}