diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 1999-09-20 19:14:48 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 1999-09-20 19:14:48 +0000 |
commit | b8024b59426c5774f030ae565e9eeaef00a09334 (patch) | |
tree | 318a8276a300db748175d0390ef9418a29a80f17 /gcc | |
parent | 451fbdf217f6a09f6d18dcd4d0624c798c8647e6 (diff) | |
download | gcc-b8024b59426c5774f030ae565e9eeaef00a09334.zip gcc-b8024b59426c5774f030ae565e9eeaef00a09334.tar.gz gcc-b8024b59426c5774f030ae565e9eeaef00a09334.tar.bz2 |
* flow.c (verify_flow_info): Fix typo, "abort;" -> "abort ();".
From-SVN: r29528
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/flow.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index ac05e6d..e1be652 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +Mon Sep 20 15:11:54 1999 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> + + * flow.c (verify_flow_info): Fix typo, "abort;" -> "abort ();". + Mon Sep 20 14:56:34 1999 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> * crtstuff.c (ON_EXIT): Delete empty macro definition. @@ -6393,7 +6393,7 @@ verify_flow_info () if (!e2) { error ("Basic block %i edge lists are corrupted", bb->index); - abort; + abort (); } } e = e->pred_next; |