diff options
author | jakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-02-27 21:35:53 +0000 |
---|---|---|
committer | jakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-02-27 21:35:53 +0000 |
commit | c6d207aab3975811f7067e060a01f8e30e88ee60 (patch) | |
tree | 12f259e1572b11060670d90fe959d41b0348fffd /gcc/ipa-pure-const.c | |
parent | 73dcdb848e64cc752f9217a630d67153322b8e47 (diff) | |
download | gcc-c6d207aab3975811f7067e060a01f8e30e88ee60.tar.gz |
PR middle-end/56461
* ipa-pure-const.c (propagate): Use FOR_EACH_FUNCTION instead of
FOR_EACH_DEFINED_FUNCTION when freeing state.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@196322 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ipa-pure-const.c')
-rw-r--r-- | gcc/ipa-pure-const.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/ipa-pure-const.c b/gcc/ipa-pure-const.c index 07ba90fa19b..94c7315c124 100644 --- a/gcc/ipa-pure-const.c +++ b/gcc/ipa-pure-const.c @@ -1479,7 +1479,7 @@ propagate (void) propagate_pure_const (); /* Cleanup. */ - FOR_EACH_DEFINED_FUNCTION (node) + FOR_EACH_FUNCTION (node) if (has_function_state (node)) free (get_function_state (node)); funct_state_vec.release (); |