]> gcc.gnu.org Git - gcc.git/commitdiff
system.h (abort): Supply more detailed information on how to report an Internal Compi...
authorGerald Pfeifer <pfeifer@dbai.tuwien.ac.at>
Fri, 8 Jan 1999 04:51:16 +0000 (05:51 +0100)
committerGerald Pfeifer <gerald@gcc.gnu.org>
Fri, 8 Jan 1999 04:51:16 +0000 (04:51 +0000)
* system.h (abort): Supply more detailed information on how to
report an Internal Compiler Error.

From-SVN: r24571

gcc/ChangeLog
gcc/system.h

index 6a20a0905a769f2c0cee40fc3ae2c7144548059d..92498dc0ba30e2cae9dfb7de146b17b9d7da5480 100644 (file)
@@ -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.
index e03e43da09f1c6aede32e8988e1edc9ef64f186d..12c0a775d6ee28451e887b58798445c05f08f6da 100644 (file)
@@ -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))
 
This page took 0.074275 seconds and 5 git commands to generate.