2008-04-02 Paolo Bonzini <bonzini@gnu.org>
authorbonzini <bonzini@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 2 Apr 2008 12:16:54 +0000 (12:16 +0000)
committerbonzini <bonzini@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 2 Apr 2008 12:16:54 +0000 (12:16 +0000)
* fwprop.c: Fix ISO-C99ism.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@133833 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/fwprop.c

index c3cb0f5..714c380 100644 (file)
@@ -1,5 +1,9 @@
 2008-04-02  Paolo Bonzini  <bonzini@gnu.org>
 
+       * fwprop.c: Fix ISO-C99ism.
+
+2008-04-02  Paolo Bonzini  <bonzini@gnu.org>
+
        PR bootstrap/35752
        * Makefile.in (objdir): Set it here.
        * configure.ac: Not here.  Find dynamic linker characteristics.
index 4d97c9c..d265af3 100644 (file)
@@ -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
 };