aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorJames E Wilson <wilson@specifixinc.com>2004-08-11 20:08:00 +0000
committerJim Wilson <wilson@gcc.gnu.org>2004-08-11 13:08:00 -0700
commitaf874237026fe74596f56717961c674352d8a0f6 (patch)
tree44ff6cf92232892c86f053b7239db1bb6f859d58 /gcc
parentc1618c0ca2ec04f427dea07b5c13f2ae8ab31745 (diff)
downloadgcc-af874237026fe74596f56717961c674352d8a0f6.zip
gcc-af874237026fe74596f56717961c674352d8a0f6.tar.gz
gcc-af874237026fe74596f56717961c674352d8a0f6.tar.bz2
Fix -fprofile-use ICE.
PR rtl-optimization/16490 * cfgrtl.c (cfg_layout_split_edge): Set global_live_at_start and global_live_at_end for new basic block if already set for other blocks. From-SVN: r85813
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog6
-rw-r--r--gcc/cfgrtl.c12
2 files changed, 18 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 3509bba..6f44198 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,9 @@
+2004-08-11 James E Wilson <wilson@specifixinc.com>
+
+ PR rtl-optimization/16490
+ * cfgrtl.c (cfg_layout_split_edge): Set global_live_at_start and
+ global_live_at_end for new basic block if already set for other blocks.
+
2004-08-11 David Edelsohn <edelsohn@gnu.org>
* config/rs6000/rs6000.h (MAX_FIXED_MODE_SIZE): Define.
diff --git a/gcc/cfgrtl.c b/gcc/cfgrtl.c
index 5a280af..a4ac823 100644
--- a/gcc/cfgrtl.c
+++ b/gcc/cfgrtl.c
@@ -2781,6 +2781,18 @@ cfg_layout_split_edge (edge e)
? NEXT_INSN (BB_END (e->src)) : get_insns (),
NULL_RTX, e->src);
+ /* ??? This info is likely going to be out of date very soon, but we must
+ create it to avoid getting an ICE later. */
+ if (e->dest->global_live_at_start)
+ {
+ new_bb->global_live_at_start = OBSTACK_ALLOC_REG_SET (&flow_obstack);
+ new_bb->global_live_at_end = OBSTACK_ALLOC_REG_SET (&flow_obstack);
+ COPY_REG_SET (new_bb->global_live_at_start,
+ e->dest->global_live_at_start);
+ COPY_REG_SET (new_bb->global_live_at_end,
+ e->dest->global_live_at_start);
+ }
+
new_e = make_edge (new_bb, e->dest, EDGE_FALLTHRU);
redirect_edge_and_branch_force (e, new_bb);