summaryrefslogtreecommitdiff
path: root/gcc/cpperror.c
diff options
context:
space:
mode:
authorzack <zack@138bc75d-0d04-0410-961f-82ee72b054a4>1999-04-14 09:40:56 +0000
committerzack <zack@138bc75d-0d04-0410-961f-82ee72b054a4>1999-04-14 09:40:56 +0000
commit47e49e31956f101e1854d3d9c4c60b7d8ba227b7 (patch)
tree5c0f7e812107a4a1edffd2adab583d43d11252a1 /gcc/cpperror.c
parentaa1275a321e5f5b881b927fd7040fdc1104288a9 (diff)
downloadgcc-47e49e31956f101e1854d3d9c4c60b7d8ba227b7.tar.gz
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. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@26442 138bc75d-0d04-0410-961f-82ee72b054a4
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);