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]

[4.3; vta4.3] remove trailing comma from enum def


I'm getting a bootstrap failure on x86_64-linux-gnu in the 4.3 branch,
because of a trailing comma after PR_HANDLE_MEM in fwprop.c.  I'm
checking this in as obvious.  The comma is not present in the trunk.

for  gcc/ChangeLog
from  Alexandre Oliva  <aoliva@redhat.com>

	* fwprop.c (PR_HANDLE_MEM): Remove trailing comma in enum.

Index: gcc/fwprop.c
===================================================================
--- gcc/fwprop.c.orig	2008-07-30 13:59:55.000000000 -0300
+++ gcc/fwprop.c	2008-07-30 14:00:13.000000000 -0300
@@ -231,7 +231,7 @@ enum {
      PR_HANDLE_MEM is set when the source of the propagation was not
      another MEM.  Then, it is safe not to treat non-read-only MEMs as
      ``opaque'' objects.  */
-  PR_HANDLE_MEM = 2,
+  PR_HANDLE_MEM = 2
 };
 
 
-- 
Alexandre Oliva         http://www.lsd.ic.unicamp.br/~oliva/
Free Software Evangelist  oliva@{lsd.ic.unicamp.br, gnu.org}
FSFLA Board Member       ÂSÃ Libre! => http://www.fsfla.org/
Red Hat Compiler Engineer   aoliva@{redhat.com, gcc.gnu.org}

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