diff options
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/fwprop.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index c3cb0f5..714c380 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -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. diff --git a/gcc/fwprop.c b/gcc/fwprop.c index 4d97c9c..d265af3 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 }; |