Commit 4323a0e1 by Jeff Law

reorg.c (mark_set_resources, case REG): A register is set iff "in_dest" is nonzero.

	* reorg.c (mark_set_resources, case REG): A register is set iff
	"in_dest" is nonzero.

From-SVN: r2203
parent cc471082
......@@ -522,6 +522,7 @@ mark_set_resources (x, res, in_dest, include_called_routine)
return;
case REG:
if (in_dest)
for (i = 0; i < HARD_REGNO_NREGS (REGNO (x), GET_MODE (x)); i++)
SET_HARD_REG_BIT (res->regs, REGNO (x) + i);
return;
......
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