diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2000-06-05 22:18:08 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2000-06-05 22:18:08 +0000 |
commit | 1cc0c12429e74c09f75c778f6ab729133f4f7115 (patch) | |
tree | 4f6e375a31fb41e453f75cdb7b730ec068b8dbda /gnu/egcs/gcc/system.h | |
parent | cb93c551e9ce9846b9f004a0eed7991d15b8b260 (diff) |
Synch with 2.95.3 (pre-rel)
Diffstat (limited to 'gnu/egcs/gcc/system.h')
-rw-r--r-- | gnu/egcs/gcc/system.h | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/gnu/egcs/gcc/system.h b/gnu/egcs/gcc/system.h index 7d6082ccf29..1b40e6004fc 100644 --- a/gnu/egcs/gcc/system.h +++ b/gnu/egcs/gcc/system.h @@ -22,6 +22,11 @@ Boston, MA 02111-1307, USA. */ #ifndef __GCC_SYSTEM_H__ #define __GCC_SYSTEM_H__ +/* This is the location of the online document giving information how + to report bugs. If you change this string, also check for strings + not under control of the preprocessor. */ +#define GCCBUGURL "<URL:http://www.gnu.org/software/gcc/bugs.html>" + /* We must include stdarg.h/varargs.h before stdio.h. */ #ifdef ANSI_PROTOTYPES #include <stdarg.h> @@ -399,8 +404,8 @@ extern void fatal PVPROTO((const char *, ...)) ATTRIBUTE_PRINTF_1 ATTRIBUTE_NORE #else #define abort() 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.", \ - __PRETTY_FUNCTION__, trim_filename (__FILE__), __LINE__) + "See %s for instructions.", \ + __PRETTY_FUNCTION__, trim_filename (__FILE__), __LINE__, GCCBUGURL) #endif /* recent gcc */ /* trim_filename is in toplev.c. Define a stub macro for files that |