summaryrefslogtreecommitdiffstats
path: root/gcc/cpplib.c
diff options
context:
space:
mode:
authorneil <neil@138bc75d-0d04-0410-961f-82ee72b054a4>2002-05-23 06:07:45 +0000
committerneil <neil@138bc75d-0d04-0410-961f-82ee72b054a4>2002-05-23 06:07:45 +0000
commitb9093358f8429abd03bfef0dac0599d58deeccb9 (patch)
treed76b0e196a131afd496bdeff96688447c5f400bd /gcc/cpplib.c
parent59e169117fd398179e05c29759810b7498b674d9 (diff)
downloadppe42-gcc-b9093358f8429abd03bfef0dac0599d58deeccb9.tar.gz
ppe42-gcc-b9093358f8429abd03bfef0dac0599d58deeccb9.zip
* cpperror.c (_cpp_begin_message): No special casing
of CPP_FATAL_LIMIT. * cppinit.c (sanity_checks): s/DL_FATAL/DL_ICE/. (output_deps, cpp_handle_option, cpp_post_options): Use DL_ERROR. * cpplib.c (do_include_common): Use DL_ERROR. * cpplib.h (CPP_FATAL_LIMIT, CPP_FATAL_ERRORS, DL_FATAL): Remove. (DL_ICE): Renumber. * fix-header.c (read_scan_file): Update. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@53765 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cpplib.c')
-rw-r--r--gcc/cpplib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cpplib.c b/gcc/cpplib.c
index df33af8d002..ba6924d08ec 100644
--- a/gcc/cpplib.c
+++ b/gcc/cpplib.c
@@ -651,7 +651,7 @@ do_include_common (pfile, type)
{
/* Prevent #include recursion. */
if (pfile->line_maps.depth >= CPP_STACK_MAX)
- cpp_error (pfile, DL_FATAL, "#include nested too deeply");
+ cpp_error (pfile, DL_ERROR, "#include nested too deeply");
else
{
check_eol (pfile);
OpenPOWER on IntegriCloud