Commit 5efc661c by Richard Earnshaw Committed by Richard Earnshaw

re PR target/56979 (ICE in output_operand: invalid operand for code 'P')

	PR target/56979
	* arm.c (aapcs_vfp_allocate): Decompose the argument if the
	suggested mode for the assignment isn't compatible with the
	registers required.

From-SVN: r201598
parent 374cf165
2013-08-08 Richard Earnshaw <rearnsha@arm.com>
PR target/56979
* arm.c (aapcs_vfp_allocate): Decompose the argument if the
suggested mode for the assignment isn't compatible with the
registers required.
2013-08-08 Bernd Edlinger <bernd.edlinger@hotmail.de>
PR target/58065
......
......@@ -4544,7 +4544,9 @@ aapcs_vfp_allocate (CUMULATIVE_ARGS *pcum, enum machine_mode mode,
if (((pcum->aapcs_vfp_regs_free >> regno) & mask) == mask)
{
pcum->aapcs_vfp_reg_alloc = mask << regno;
if (mode == BLKmode || (mode == TImode && !TARGET_NEON))
if (mode == BLKmode
|| (mode == TImode && ! TARGET_NEON)
|| ! arm_hard_regno_mode_ok (FIRST_VFP_REGNUM + regno, mode))
{
int i;
int rcount = pcum->aapcs_vfp_rcount;
......
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