mirror of
https://git.yoctoproject.org/poky
synced 2026-04-25 15:32:13 +02:00
Some patches were missing Upstream-Status informantion, this commit adds that in those patches. (From OE-Core rev: 01c3669856538eb34d329780e03df2dc7fb985f2) Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
36 lines
837 B
Diff
36 lines
837 B
Diff
Upstream-Status:Backport
|
|
2011-08-18 Richard Sandiford <richard.sandiford@linaro.org>
|
|
|
|
gcc/
|
|
Backport from mainline:
|
|
|
|
2011-08-18 Richard Sandiford <richard.sandiford@linaro.org>
|
|
|
|
* config/arm/arm.c (arm_rtx_costs_1): Don't modify the costs of SET.
|
|
(arm_size_rtx_costs): Likewise.
|
|
|
|
=== modified file 'gcc/config/arm/arm.c'
|
|
--- old/gcc/config/arm/arm.c 2011-08-12 08:08:31 +0000
|
|
+++ new/gcc/config/arm/arm.c 2011-08-18 13:53:37 +0000
|
|
@@ -7464,6 +7464,9 @@
|
|
*total = COSTS_N_INSNS (4);
|
|
return true;
|
|
|
|
+ case SET:
|
|
+ return false;
|
|
+
|
|
default:
|
|
*total = COSTS_N_INSNS (4);
|
|
return false;
|
|
@@ -7811,6 +7814,9 @@
|
|
*total = COSTS_N_INSNS (1) + 1;
|
|
return true;
|
|
|
|
+ case SET:
|
|
+ return false;
|
|
+
|
|
default:
|
|
if (mode != VOIDmode)
|
|
*total = COSTS_N_INSNS (ARM_NUM_REGS (mode));
|
|
|