diff options
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/arm/arm.c | 1 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 53934eb..364cc8a 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2014-01-28 Kyrylo Tkachov <kyrylo.tkachov@arm.com> + + * config/arm/arm.c (arm_new_rtx_costs): Remove useless statement + at const_int_cost. + 2014-01-28 Richard Biener <rguenther@suse.de> Revert diff --git a/gcc/config/arm/arm.c b/gcc/config/arm/arm.c index fc81bf6..b856a61 100644 --- a/gcc/config/arm/arm.c +++ b/gcc/config/arm/arm.c @@ -10390,7 +10390,6 @@ arm_new_rtx_costs (rtx x, enum rtx_code code, enum rtx_code outer_code, const_int_cost: if (mode == SImode) { - *cost += 0; *cost += COSTS_N_INSNS (arm_gen_constant (outer_code, SImode, NULL, INTVAL (x), NULL, NULL, 0, 0)); |