summaryrefslogtreecommitdiff
path: root/gcc/cpperror.c
diff options
context:
space:
mode:
authorZack Weinberg <zack@gcc.gnu.org>1999-04-14 09:40:56 +0000
committerZack Weinberg <zack@gcc.gnu.org>1999-04-14 09:40:56 +0000
commit34ca9541e706330f52d63cb1fde4adaf65c1775e (patch)
tree5c0f7e812107a4a1edffd2adab583d43d11252a1 /gcc/cpperror.c
parent42ebbb0a1d80d913a908b73aecf718e98f08cac4 (diff)
downloadgcc-34ca9541e706330f52d63cb1fde4adaf65c1775e.tar.gz
cpperror.c, [...]: Never call abort.
1999-04-14 12:37 -0400 Zack Weinberg <zack@rabi.columbia.edu> * cpperror.c, cppexp.c, cpplib.c: Never call abort. * cpphash.c: Only call abort when we detect corruption of the malloc arena. * cppmain.c: Don't define fatal or fancy_abort. From-SVN: r26442
Diffstat (limited to 'gcc/cpperror.c')
-rw-r--r--gcc/cpperror.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cpperror.c b/gcc/cpperror.c
index af018815d93..c7339dcb808 100644
--- a/gcc/cpperror.c
+++ b/gcc/cpperror.c
@@ -114,7 +114,7 @@ v_cpp_message (pfile, is_error, msgid, ap)
pfile->errors = CPP_FATAL_LIMIT;
break;
default:
- abort ();
+ cpp_fatal (pfile, "internal error: bad is_error(%d) in v_cpp_message", is_error);
}
vfprintf (stderr, _(msgid), ap);