diff options
author | Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at> | 1999-01-08 05:51:16 +0100 |
---|---|---|
committer | Gerald Pfeifer <gerald@gcc.gnu.org> | 1999-01-08 04:51:16 +0000 |
commit | 9de843ca79e321b77f66484a3e4792aaae219d0c (patch) | |
tree | 569baad9e076e2f58fae40c22b0b174eee4efcc5 | |
parent | 523bb0bad10918404b1d0663978dbc23150fb8ca (diff) | |
download | gcc-9de843ca79e321b77f66484a3e4792aaae219d0c.zip gcc-9de843ca79e321b77f66484a3e4792aaae219d0c.tar.gz gcc-9de843ca79e321b77f66484a3e4792aaae219d0c.tar.bz2 |
system.h (abort): Supply more detailed information on how to report an Internal Compiler Error.
* system.h (abort): Supply more detailed information on how to
report an Internal Compiler Error.
From-SVN: r24571
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/system.h | 6 |
2 files changed, 9 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 6a20a09..92498dc 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +Thu Jan 7 19:52:53 1999 Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at> + + * system.h (abort): Supply more detailed information on how to + report an Internal Compiler Error. + Fri Jan 8 10:51:13 1999 Andreas Schwab <schwab@issan.cs.uni-dortmund.de> * config/m68k/m68k.h: Declare output_function_epilogue. diff --git a/gcc/system.h b/gcc/system.h index e03e43d..12c0a77 100644 --- a/gcc/system.h +++ b/gcc/system.h @@ -1,6 +1,6 @@ /* system.h - Get common system includes and various definitions and declarations based on autoconf macros. - Copyright (C) 1998 Free Software Foundation, Inc. + Copyright (C) 1998, 1999 Free Software Foundation, Inc. This file is part of GNU CC. @@ -364,7 +364,9 @@ extern void abort (); #else #define abort() \ (fprintf (stderr, \ - "%s:%d: Internal compiler error in function %s\n", \ + "%s:%d: Internal compiler error in function %s\n" \ + "Please submit a full bug report to `egcs-bugs@cygnus.com'.\n" \ + "See <URL:http://egcs.cygnus.com/faq.html#bugreport> for details.\n", \ __FILE__, __LINE__, __PRETTY_FUNCTION__), \ exit (FATAL_EXIT_CODE)) |