From: Paolo Bonzini Date: Wed, 2 Apr 2008 12:16:54 +0000 (+0000) Subject: fwprop.c: Fix ISO-C99ism. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=3f1c2278049e83b151ed3a2abbc31b8ac5b54f60;p=gcc.git fwprop.c: Fix ISO-C99ism. 2008-04-02 Paolo Bonzini * fwprop.c: Fix ISO-C99ism. From-SVN: r133833 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index c3cb0f5b3c6..714c38027cf 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 4d97c9c4ecd..d265af37f97 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 };