aboutsummaryrefslogtreecommitdiff
path: root/gcc/predict.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/predict.c')
-rw-r--r--gcc/predict.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/predict.c b/gcc/predict.c
index e42eed0..243c814 100644
--- a/gcc/predict.c
+++ b/gcc/predict.c
@@ -522,7 +522,7 @@ estimate_probability (struct loops *loops_info)
}
}
- cond = get_condition (last_insn, &earliest);
+ cond = get_condition (last_insn, &earliest, false);
if (! cond)
continue;
@@ -678,7 +678,7 @@ expected_value_to_br_prob (void)
(lt r70, r71)
Could use cselib to try and reduce this further. */
cond = XEXP (SET_SRC (pc_set (insn)), 0);
- cond = canonicalize_condition (insn, cond, 0, NULL, ev_reg);
+ cond = canonicalize_condition (insn, cond, 0, NULL, ev_reg, false);
if (! cond || XEXP (cond, 0) != ev_reg
|| GET_CODE (XEXP (cond, 1)) != CONST_INT)
continue;