when ENABLE_CHECKING is not defined.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@49151
138bc75d-0d04-0410-961f-
82ee72b054a4
2002-01-23 Zack Weinberg <zack@codesourcery.com>
+ * diagnostic.c (internal_error): Do ICE suppression only
+ when ENABLE_CHECKING is not defined.
+
* c-typeck.c (require_complete_type): Return error_mark_node
if type is error_mark_node.
if (diagnostic_lock)
error_recursion ();
+#ifndef ENABLE_CHECKING
if (errorcount > 0 || sorrycount > 0)
{
fnotice (stderr, "%s:%d: confused by earlier errors, bailing out\n",
input_filename, lineno);
exit (FATAL_EXIT_CODE);
}
+#endif
if (internal_error_function != 0)
(*internal_error_function) (_(msgid), &ap);