diff options
author | Richard Guenther <rguenther@suse.de> | 2010-06-01 13:00:46 +0000 |
---|---|---|
committer | Richard Biener <rguenth@gcc.gnu.org> | 2010-06-01 13:00:46 +0000 |
commit | 0641fa9781e8cd257e0113360bef387bcbfd4b96 (patch) | |
tree | 2563221c514417af4e907e265bbeb3950fc915eb /gcc/ipa-pure-const.c | |
parent | c4e09c3f8bbbeb122fec25eed43a8fbb9b51df88 (diff) | |
download | gcc-0641fa9781e8cd257e0113360bef387bcbfd4b96.zip gcc-0641fa9781e8cd257e0113360bef387bcbfd4b96.tar.gz gcc-0641fa9781e8cd257e0113360bef387bcbfd4b96.tar.bz2 |
optabs.c (init_optabs): Guard all accesses to reinit.
2010-06-01 Richard Guenther <rguenther@suse.de>
* optabs.c (init_optabs): Guard all accesses to reinit.
* ipa-pure-const.c (propagate): Fix another typo.
* opts.c (common_handle_option): Split assignment to bool.
* c-opts.c (c_common_handle_option): Likewise.
From-SVN: r160102
Diffstat (limited to 'gcc/ipa-pure-const.c')
-rw-r--r-- | gcc/ipa-pure-const.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/ipa-pure-const.c b/gcc/ipa-pure-const.c index 3bea566..df2f8c8 100644 --- a/gcc/ipa-pure-const.c +++ b/gcc/ipa-pure-const.c @@ -1110,7 +1110,8 @@ propagate (void) } pure_const_state = MAX (pure_const_state, MIN (edge_state, w_l->state_previously_known)); - looping = MAX (looping, MIN (edge_looping, edge_state)); + looping = MAX (looping, MIN (edge_looping, + w_l->looping_previously_known)); if (pure_const_state == IPA_NEITHER) break; } |