mirror of git://gcc.gnu.org/git/gcc.git
* config/arm/arm.c (thumb1_size_rtx_costs) <SET>: Add missing guard.
From-SVN: r239888
This commit is contained in:
parent
1a576b1332
commit
c1105fa7e4
|
|
@ -1,3 +1,7 @@
|
||||||
|
2016-08-31 Eric Botcazou <ebotcazou@adacore.com>
|
||||||
|
|
||||||
|
* config/arm/arm.c (thumb1_size_rtx_costs) <SET>: Add missing guard.
|
||||||
|
|
||||||
2016-08-30 David Malcolm <dmalcolm@redhat.com>
|
2016-08-30 David Malcolm <dmalcolm@redhat.com>
|
||||||
|
|
||||||
* diagnostic-show-locus.c (colorizer::begin_state): Support more
|
* diagnostic-show-locus.c (colorizer::begin_state): Support more
|
||||||
|
|
|
||||||
|
|
@ -9127,7 +9127,8 @@ thumb1_size_rtx_costs (rtx x, enum rtx_code code, enum rtx_code outer)
|
||||||
if (satisfies_constraint_J (SET_SRC (x))
|
if (satisfies_constraint_J (SET_SRC (x))
|
||||||
|| satisfies_constraint_K (SET_SRC (x))
|
|| satisfies_constraint_K (SET_SRC (x))
|
||||||
/* Too big an immediate for a 2-byte mov, using MOVT. */
|
/* Too big an immediate for a 2-byte mov, using MOVT. */
|
||||||
|| (UINTVAL (SET_SRC (x)) >= 256
|
|| (CONST_INT_P (SET_SRC (x))
|
||||||
|
&& UINTVAL (SET_SRC (x)) >= 256
|
||||||
&& TARGET_HAVE_MOVT
|
&& TARGET_HAVE_MOVT
|
||||||
&& satisfies_constraint_j (SET_SRC (x)))
|
&& satisfies_constraint_j (SET_SRC (x)))
|
||||||
/* thumb1_movdi_insn. */
|
/* thumb1_movdi_insn. */
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue