aboutsummaryrefslogtreecommitdiff
path: root/gcc/cpplib.c
diff options
context:
space:
mode:
authorNeil Booth <neil@daikokuya.demon.co.uk>2002-05-23 06:07:45 +0000
committerNeil Booth <neil@gcc.gnu.org>2002-05-23 06:07:45 +0000
commitbdee42b16c0af056a289dbcb61ba70917ba7f83b (patch)
treed76b0e196a131afd496bdeff96688447c5f400bd /gcc/cpplib.c
parente67a7860dc6e7e763e1149e3c77b5d00d69a678a (diff)
downloadgcc-bdee42b16c0af056a289dbcb61ba70917ba7f83b.zip
gcc-bdee42b16c0af056a289dbcb61ba70917ba7f83b.tar.gz
gcc-bdee42b16c0af056a289dbcb61ba70917ba7f83b.tar.bz2
cpperror.c (_cpp_begin_message): No special casing of CPP_FATAL_LIMIT.
* 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. From-SVN: r53765
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 df33af8d..ba6924d 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);