aboutsummaryrefslogtreecommitdiff
path: root/gcc/cpplib.c
diff options
context:
space:
mode:
authorRichard Kenner <kenner@gcc.gnu.org>1995-05-16 18:03:31 -0400
committerRichard Kenner <kenner@gcc.gnu.org>1995-05-16 18:03:31 -0400
commit3efba298c7bafb883a504fea152b151820c1ac9d (patch)
tree88004db04434e773e995aceb1ed7c095a00e724c /gcc/cpplib.c
parent84ee6fd478f21c36abcc7d8b99c7f996ba267a48 (diff)
downloadgcc-3efba298c7bafb883a504fea152b151820c1ac9d.zip
gcc-3efba298c7bafb883a504fea152b151820c1ac9d.tar.gz
gcc-3efba298c7bafb883a504fea152b151820c1ac9d.tar.bz2
Use FATAL_EXIT_CODE instead of FAILURE_EXIT_CODE.
From-SVN: r9725
Diffstat (limited to 'gcc/cpplib.c')
-rw-r--r--gcc/cpplib.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/cpplib.c b/gcc/cpplib.c
index 3f3e212..6517deb 100644
--- a/gcc/cpplib.c
+++ b/gcc/cpplib.c
@@ -5999,7 +5999,7 @@ push_parse_file (pfile, fname)
if (fd < 0)
{
cpp_perror_with_name (pfile, pend->arg);
- return FAILURE_EXIT_CODE;
+ return FATAL_EXIT_CODE;
}
cpp_push_buffer (pfile, NULL, 0);
finclude (pfile, fd, pend->arg, 0, NULL_PTR);
@@ -6164,7 +6164,7 @@ push_parse_file (pfile, fname)
if (fd < 0)
{
cpp_perror_with_name (pfile, pend->arg);
- return FAILURE_EXIT_CODE;
+ return FATAL_EXIT_CODE;
}
cpp_push_buffer (pfile, NULL, 0);
finclude (pfile, fd, pend->arg, 0, NULL_PTR);