Commit 163674a7 by Richard Stallman

(record_initial): Reject insns that store into subregs.

From-SVN: r4632
parent 1cd88c71
......@@ -6200,7 +6200,9 @@ record_initial (dest, set)
if (GET_CODE (dest) != REG
|| REGNO (dest) >= max_reg_before_loop
|| reg_iv_type[REGNO (dest)] != BASIC_INDUCT)
|| reg_iv_type[REGNO (dest)] != BASIC_INDUCT
/* Reject this insn if the source isn't valid for the mode of DEST. */
|| GET_MODE (dest) != GET_MODE (SET_DEST (set)))
return;
bl = reg_biv_class[REGNO (dest)];
......
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