Commit 2b86fca7 by Renlin Li Committed by Kyrylo Tkachov

arm.c (arm_output_mi_thunk): Use plus_constant.

[gcc/]
2013-10-09  Renlin Li  <Renlin.Li@arm.com>

	* config/arm/arm.c (arm_output_mi_thunk): Use plus_constant.

From-SVN: r203309
parent e179df83
2013-10-09 Renlin Li <Renlin.Li@arm.com>
* config/arm/arm.c (arm_output_mi_thunk): Use plus_constant.
2013-10-09 Andreas Krebbel <Andreas.Krebbel@de.ibm.com> 2013-10-09 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
* config/s390/s390.c (s390_register_info_stdarg_fpr): Remove * config/s390/s390.c (s390_register_info_stdarg_fpr): Remove
......
...@@ -27261,7 +27261,7 @@ arm_output_mi_thunk (FILE *file, tree thunk ATTRIBUTE_UNUSED, ...@@ -27261,7 +27261,7 @@ arm_output_mi_thunk (FILE *file, tree thunk ATTRIBUTE_UNUSED,
{ {
/* Output ".word .LTHUNKn-7-.LTHUNKPCn". */ /* Output ".word .LTHUNKn-7-.LTHUNKPCn". */
rtx tem = XEXP (DECL_RTL (function), 0); rtx tem = XEXP (DECL_RTL (function), 0);
tem = gen_rtx_PLUS (GET_MODE (tem), tem, GEN_INT (-7)); tem = plus_constant (GET_MODE (tem), tem, -7);
tem = gen_rtx_MINUS (GET_MODE (tem), tem = gen_rtx_MINUS (GET_MODE (tem),
tem, tem,
gen_rtx_SYMBOL_REF (Pmode, gen_rtx_SYMBOL_REF (Pmode,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment