aboutsummaryrefslogtreecommitdiff
path: root/gcc/dce.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/dce.c')
-rw-r--r--gcc/dce.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/dce.c b/gcc/dce.c
index dec8669..aca7311 100644
--- a/gcc/dce.c
+++ b/gcc/dce.c
@@ -573,8 +573,8 @@ dce_process_block (basic_block bb, bool redo_out)
/* These regs are considered always live so if they end up dying
because of some def, we need to bring the back again.
Calling df_simulate_fixup_sets has the disadvantage of calling
- df_has_eh_preds once per insn, so we cache the information here. */
- if (df_has_eh_preds (bb))
+ bb_has_eh_pred once per insn, so we cache the information here. */
+ if (bb_has_eh_pred (bb))
au = df->eh_block_artificial_uses;
else
au = df->regular_block_artificial_uses;