aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorEric Botcazou <ebotcazou@adacore.com>2009-04-28 21:29:58 +0000
committerEric Botcazou <ebotcazou@gcc.gnu.org>2009-04-28 21:29:58 +0000
commite1a3b85c7a74e70891841cc1c993df347fe3b99b (patch)
treecab51fada23667f1453b4c00dadf05719b751e7f /gcc
parent895302fb3de1bf3c1e680974432033e54949db1e (diff)
downloadgcc-e1a3b85c7a74e70891841cc1c993df347fe3b99b.zip
gcc-e1a3b85c7a74e70891841cc1c993df347fe3b99b.tar.gz
gcc-e1a3b85c7a74e70891841cc1c993df347fe3b99b.tar.bz2
re PR rtl-optimization/39938 (build broke for cris-elf with dbr_schedule change)
PR rtl-optimization/39938 * resource.c (init_resource_info): Add call to df_analyze. From-SVN: r146915
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/resource.c2
2 files changed, 7 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index aafe2ff..750bef1 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+2009-04-28 Eric Botcazou <ebotcazou@adacore.com>
+
+ PR rtl-optimization/39938
+ * resource.c (init_resource_info): Add call to df_analyze.
+
2009-04-28 Uros Bizjak <ubizjak@gmail.com>
* config/alpha/alpha.md (usegp): Cast the result of
diff --git a/gcc/resource.c b/gcc/resource.c
index 91b86c9..be76f68 100644
--- a/gcc/resource.c
+++ b/gcc/resource.c
@@ -1200,6 +1200,8 @@ init_resource_info (rtx epilogue_insn)
FOR_EACH_BB (bb)
if (LABEL_P (BB_HEAD (bb)))
BLOCK_FOR_INSN (BB_HEAD (bb)) = bb;
+
+ df_analyze ();
}
/* Free up the resources allocated to mark_target_live_regs (). This