aboutsummaryrefslogtreecommitdiff
path: root/gcc/cfgexpand.c
diff options
context:
space:
mode:
authorRichard Guenther <rguenther@suse.de>2010-02-11 15:38:59 +0000
committerRichard Biener <rguenth@gcc.gnu.org>2010-02-11 15:38:59 +0000
commit91753e21c33ee0f333e529487d67a1ff60b30655 (patch)
tree677c1523c511c02cf1a26efd442c195756d993b7 /gcc/cfgexpand.c
parent13b7990c1a90247baa304dfa8c438d214424019f (diff)
downloadgcc-91753e21c33ee0f333e529487d67a1ff60b30655.zip
gcc-91753e21c33ee0f333e529487d67a1ff60b30655.tar.gz
gcc-91753e21c33ee0f333e529487d67a1ff60b30655.tar.bz2
re PR lto/41664 (FAIL: gfortran.dg/lto/pr40725 f_lto_pr40725_0.o-f_lto_pr40725_1.o execute -O2 -fwhopr and -flto)
2010-02-11 Richard Guenther <rguenther@suse.de> PR lto/41664 * tree-ssa-alias.c (refs_may_alias_p_1): Canonicalize pointer-vs-decl case by swapping refs. Handle some cases of pointer-vs-decl disambiguations more conservatively. * cfgexpand.c (gimple_expand_cfg): Set gimple_df->in_ssa_p to false after expanding. From-SVN: r156699
Diffstat (limited to 'gcc/cfgexpand.c')
-rw-r--r--gcc/cfgexpand.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/gcc/cfgexpand.c b/gcc/cfgexpand.c
index 788242c..a0d4ba5 100644
--- a/gcc/cfgexpand.c
+++ b/gcc/cfgexpand.c
@@ -3639,6 +3639,9 @@ gimple_expand_cfg (void)
execute_free_datastructures ();
finish_out_of_ssa (&SA);
+ /* We are no longer in SSA form. */
+ cfun->gimple_df->in_ssa_p = false;
+
/* Expansion is used by optimization passes too, set maybe_hot_insn_p
conservatively to true until they are all profile aware. */
pointer_map_destroy (lab_rtx_for_bb);