aboutsummaryrefslogtreecommitdiff
path: root/gcc/cp
diff options
context:
space:
mode:
authorMartin v. Löwis <loewis@informatik.hu-berlin.de>2000-02-18 12:26:50 +0000
committerMartin v. Löwis <loewis@gcc.gnu.org>2000-02-18 12:26:50 +0000
commit8b97e23b7601eec320ef0600448a9ee686fde12b (patch)
treec87fd4de1ea1b6bad16ef5e8c6fa926ec58ad2b8 /gcc/cp
parent7eeb2431024ac0cda66c1d91f74b1068972e30db (diff)
downloadgcc-8b97e23b7601eec320ef0600448a9ee686fde12b.zip
gcc-8b97e23b7601eec320ef0600448a9ee686fde12b.tar.gz
gcc-8b97e23b7601eec320ef0600448a9ee686fde12b.tar.bz2
gcc.texi (Bug Reporting): Refer to bugs.html.
* gcc.texi (Bug Reporting): Refer to bugs.html. (Bug Lists): Likewise. * system.h (GCCBUGURL): New preprocessor define. * rtl.c (fancy_abort): Use it. * gcc.c (main): Likewise. * typeck2.c (my_friendly_abort): Use GCCBUGURL. * g77spec.c (lang_specific_driver): Use GCCBUGURL. * gjavah.c (help): Use GCCBUGURL. * jv-scan.c (help): Likewise. * jcf-dump.c (help): Likewise. From-SVN: r32049
Diffstat (limited to 'gcc/cp')
-rw-r--r--gcc/cp/ChangeLog4
-rw-r--r--gcc/cp/typeck2.c4
2 files changed, 6 insertions, 2 deletions
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog
index 50c06a0..f7501a3 100644
--- a/gcc/cp/ChangeLog
+++ b/gcc/cp/ChangeLog
@@ -1,3 +1,7 @@
+2000-02-18 Martin von Loewis <loewis@informatik.hu-berlin.de>
+
+ * typeck2.c (my_friendly_abort): Use GCCBUGURL.
+
2000-02-17 Mark Mitchell <mark@codesourcery.com>
* class.c (add_method): Don't set DECL_VIRTUAL_CONTEXT.
diff --git a/gcc/cp/typeck2.c b/gcc/cp/typeck2.c
index 3e90fb9..0f9eb2c 100644
--- a/gcc/cp/typeck2.c
+++ b/gcc/cp/typeck2.c
@@ -316,7 +316,7 @@ my_friendly_abort (i)
else
ack ("Internal compiler error %d.", i);
ack ("Please submit a full bug report.");
- ack ("See <URL:http://www.gnu.org/software/gcc/faq.html#bugreport> for instructions.");
+ ack ("See %s for instructions.", GCCBUGURL);
}
else
error ("confused by earlier errors, bailing out");
@@ -331,7 +331,7 @@ my_friendly_abort (i)
error ("Internal compiler error %d.", i);
error ("Please submit a full bug report.");
- fatal ("See <URL:http://www.gnu.org/software/gcc/faq.html#bugreport> for instructions.");
+ fatal ("See %s for instructions.", GCCBUGURL);
}
void