From 4ff8507ec570191d7cd27b4c595f42f124dea2a3 Mon Sep 17 00:00:00 2001 From: Jason Merrill Date: Fri, 14 Dec 2001 15:13:55 -0500 Subject: [PATCH] diagnostic.c (sorry): Increment sorrycount before saving the buffer state. * diagnostic.c (sorry): Increment sorrycount before saving the buffer state. From-SVN: r48005 --- gcc/ChangeLog | 5 +++++ gcc/diagnostic.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) 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: "); -- 2.30.2