aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorGabriel Dos Reis <gdr@integrable-solutions.net>2002-11-14 21:34:19 +0000
committerGabriel Dos Reis <gdr@gcc.gnu.org>2002-11-14 21:34:19 +0000
commit9fc910d1ea18fde1720eaa8277d4ce6158772426 (patch)
treeac289f20a7136263e38f45d0436c089f23f6c3f3 /gcc
parenta902a2dee7f36054a7e5bdd5981eac4fde383cd8 (diff)
downloadgcc-9fc910d1ea18fde1720eaa8277d4ce6158772426.zip
gcc-9fc910d1ea18fde1720eaa8277d4ce6158772426.tar.gz
gcc-9fc910d1ea18fde1720eaa8277d4ce6158772426.tar.bz2
* diagnostic.c (sorry): Don't repeat "sorry, unimplemented" text.
From-SVN: r59113
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/diagnostic.c1
2 files changed, 4 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index ae59f99..2fccc7e 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,7 @@
+2002-11-14 Gabriel Dos Reis <gdr@integrable-solutions.net>
+
+ * diagnostic.c (sorry): Don't repeat "sorry, unimplemented" text.
+
2002-11-14 Jakub Jelinek <jakub@redhat.com>
* varasm.c (output_addressed_constants) [MINUS_EXPR]: Clear reloc if
diff --git a/gcc/diagnostic.c b/gcc/diagnostic.c
index 2596d03..b6794b8 100644
--- a/gcc/diagnostic.c
+++ b/gcc/diagnostic.c
@@ -1023,7 +1023,6 @@ sorry VPARAMS ((const char *msgid, ...))
output_set_prefix
(&global_dc->buffer, diagnostic_build_prefix (&diagnostic));
- output_printf (&global_dc->buffer, "sorry, not implemented: ");
output_format (&global_dc->buffer, &diagnostic.message);
output_flush (&global_dc->buffer);
VA_CLOSE (ap);