diff options
Diffstat (limited to 'gcc/stmt.c')
-rw-r--r-- | gcc/stmt.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/stmt.c b/gcc/stmt.c index 2464466b376..ee880964fe1 100644 --- a/gcc/stmt.c +++ b/gcc/stmt.c @@ -2125,7 +2125,8 @@ bool lshift_cheap_p (void) if (!init) { rtx reg = gen_rtx_REG (word_mode, 10000); - int cost = rtx_cost (gen_rtx_ASHIFT (word_mode, const1_rtx, reg), SET); + int cost = rtx_cost (gen_rtx_ASHIFT (word_mode, const1_rtx, reg), SET, + optimize_insn_for_speed_p ()); cheap = cost < COSTS_N_INSNS (3); init = true; } |