Commit ca89d290 by Richard Kenner

(record_dead_and_set_regs_1): Handle SUBREGs.

From-SVN: r8594
parent 5c5033c3
......@@ -9671,6 +9671,9 @@ static void
record_dead_and_set_regs_1 (dest, setter)
rtx dest, setter;
{
if (GET_CODE (dest) == SUBREG)
dest = SUBREG_REG (dest);
if (GET_CODE (dest) == REG)
{
/* If we are setting the whole register, we know its value. Otherwise
......
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