Commit e1a4071f by Jeff Law

explow.c (hard_function_value): Change a register in BLKmode to a register in a…

explow.c (hard_function_value): Change a register in BLKmode to a register in a sufficiently wide integer mode.

	* explow.c (hard_function_value): Change a register in BLKmode
	to a register in a sufficiently wide integer mode.

From-SVN: r8578
parent 4c485b63
......@@ -1100,7 +1100,28 @@ hard_function_value (valtype, func)
tree valtype;
tree func;
{
return FUNCTION_VALUE (valtype, func);
rtx val = FUNCTION_VALUE (valtype, func);
if (GET_CODE (val) == REG
&& GET_MODE (val) == BLKmode)
{
int bytes = int_size_in_bytes (valtype);
enum machine_mode tmpmode;
for (tmpmode = GET_CLASS_NARROWEST_MODE (MODE_INT);
tmpmode != MAX_MACHINE_MODE;
tmpmode = GET_MODE_WIDER_MODE (tmpmode))
{
/* Have we found a large enough mode? */
if (GET_MODE_SIZE (tmpmode) >= bytes)
break;
}
/* No suitable mode found. */
if (tmpmode == MAX_MACHINE_MODE)
abort ();
PUT_MODE (val, tmpmode);
}
return val;
}
/* Return an rtx representing the register or memory location
......
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