This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Patch checked in for minor typo in flow.c, "abort;" -> "abort ();"


Installed:


Index: ChangeLog
===================================================================
RCS file: /egcs/carton/cvsfiles/egcs/gcc/ChangeLog,v
retrieving revision 1.4453
diff -u -p -r1.4453 ChangeLog
--- ChangeLog	1999/09/20 18:59:04	1.4453
+++ ChangeLog	1999/09/20 19:13:24
@@ -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.
Index: flow.c
===================================================================
RCS file: /egcs/carton/cvsfiles/egcs/gcc/flow.c,v
retrieving revision 1.152
diff -u -p -r1.152 flow.c
--- flow.c	1999/09/20 12:34:26	1.152
+++ flow.c	1999/09/20 19:13:27
@@ -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;


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]