From: Jason Merrill Date: Fri, 14 Dec 2001 20:13:55 +0000 (-0500) Subject: diagnostic.c (sorry): Increment sorrycount before saving the buffer state. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=4ff8507ec570191d7cd27b4c595f42f124dea2a3;p=gcc.git diagnostic.c (sorry): Increment sorrycount before saving the buffer state. * diagnostic.c (sorry): Increment sorrycount before saving the buffer state. From-SVN: r48005 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index f77017a3c58..7eb9f775033 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2001-12-14 Jason Merrill + + * diagnostic.c (sorry): Increment sorrycount before saving the + buffer state. + Fri Dec 14 19:53:23 CET 2001 Jan Hubicka * i386.md (sqrt?f): Fix conditionals. diff --git a/gcc/diagnostic.c b/gcc/diagnostic.c index 417e8b31f38..d3b5ea1ff7f 100644 --- a/gcc/diagnostic.c +++ b/gcc/diagnostic.c @@ -1049,9 +1049,9 @@ sorry VPARAMS ((const char *msgid, ...)) VA_OPEN (ap, msgid); VA_FIXEDARG (ap, const char *, msgid); + ++sorrycount; os = output_buffer_state (diagnostic_buffer); - ++sorrycount; output_set_prefix (diagnostic_buffer, context_as_prefix (input_filename, lineno, 0)); output_printf (diagnostic_buffer, "sorry, not implemented: ");