aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorKaveh R. Ghazi <ghazi@caip.rutgers.edu>1999-09-20 19:14:48 +0000
committerKaveh Ghazi <ghazi@gcc.gnu.org>1999-09-20 19:14:48 +0000
commitb8024b59426c5774f030ae565e9eeaef00a09334 (patch)
tree318a8276a300db748175d0390ef9418a29a80f17 /gcc
parent451fbdf217f6a09f6d18dcd4d0624c798c8647e6 (diff)
downloadgcc-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/ChangeLog4
-rw-r--r--gcc/flow.c2
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.
diff --git a/gcc/flow.c b/gcc/flow.c
index 834af4d..b5b4800 100644
--- a/gcc/flow.c
+++ b/gcc/flow.c
@@ -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;