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]
Other format: [Raw text]

[tuples] [patch] committed a fix to a syntax error


Forgot a semicolon in my previous patch. Fixed with this one.

Cheers,
-- 
Rafael Avila de Espindola

Google Ireland Ltd.
Gordon House
Barrow Street
Dublin 4
Ireland

Registered in Dublin, Ireland
Registration Number: 368047
Index: gcc/gimple-pretty-print.c
===================================================================
--- gcc/gimple-pretty-print.c	(revision 134801)
+++ gcc/gimple-pretty-print.c	(revision 134802)
@@ -1383,7 +1383,7 @@
       pp_string (buffer, " (");
       dump_generic_node (buffer, gimple_label_label (stmt), 0, 0, false);
       pp_string (buffer, ")");
-      pp_semicolon (buffer)
+      pp_semicolon (buffer);
     }
   else
     pp_semicolon (buffer);
Index: gcc/ChangeLog.tuples
===================================================================
--- gcc/ChangeLog.tuples	(revision 134801)
+++ gcc/ChangeLog.tuples	(revision 134802)
@@ -1,5 +1,9 @@
 2008-04-29  Rafael Espindola <espindola@google.com>
 
+	* gimple-pretty-print.c (pp_cfg_jump): add missing ";".
+
+2008-04-29  Rafael Espindola <espindola@google.com>
+
 	* gimple-pretty-print.c (dump_gimple_assign): print ";" at the end.
 	(dump_gimple_return):print ";" at the end.
 	(dump_gimple_call): print ";" at the end.

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