diff --git a/gcc/ChangeLog b/gcc/ChangeLog index c3cb0f5b3c64..714c38027cf9 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2008-04-02 Paolo Bonzini + + * fwprop.c: Fix ISO-C99ism. + 2008-04-02 Paolo Bonzini PR bootstrap/35752 diff --git a/gcc/fwprop.c b/gcc/fwprop.c index 4d97c9c4ecd5..d265af37f975 100644 --- a/gcc/fwprop.c +++ b/gcc/fwprop.c @@ -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 };