From 4049df424c16c609ac256d5e98ac743a71547f10 Mon Sep 17 00:00:00 2001 From: Eric Christopher Date: Sat, 1 Sep 2001 00:23:53 +0000 Subject: [PATCH] gcc.c (handle_braces): Add explaination for abort. 2001-08-31 Eric Christopher * gcc.c (handle_braces): Add explaination for abort. From-SVN: r45340 --- gcc/ChangeLog | 4 ++++ gcc/gcc.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index e03aa816e48..b68e849dfbe 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2001-08-31 Eric Christopher + + * gcc.c (handle_braces): Add explaination for abort. + 2001-08-30 Roman Zippel * expmed.c (store_bit_field): Update to patch from 2001-08-27: diff --git a/gcc/gcc.c b/gcc/gcc.c index fcb0d8483ce..231d5581aa4 100644 --- a/gcc/gcc.c +++ b/gcc/gcc.c @@ -5092,7 +5092,7 @@ next_member: else if (*q == '}') count--; else if (*q == 0) - abort (); + fatal ("Mismatched braces in specs"); q++; } endbody = q;