aboutsummaryrefslogtreecommitdiff
path: root/gcc/rtl.c
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/rtl.c
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/rtl.c')
-rw-r--r--gcc/rtl.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/gcc/rtl.c b/gcc/rtl.c
index f3405ee..16e9a9e 100644
--- a/gcc/rtl.c
+++ b/gcc/rtl.c
@@ -1251,7 +1251,6 @@ fancy_abort (file, line, function)
fatal (
"Internal compiler error in `%s', at %s:%d\n\
Please submit a full bug report.\n\
-See <URL:http://www.gnu.org/software/gcc/faq.html#bugreport> \
-for instructions.",
- function, trim_filename (file), line);
+See %s for instructions.",
+ function, trim_filename (file), line, GCCBUGURL);
}