Commit 1f64a081 by Ian Lance Taylor Committed by Ian Lance Taylor

* lower-subreg.c (simple_move): Reject PARTIAL_INT modes.

From-SVN: r121707
parent e42ac3de
2007-02-07 Ian Lance Taylor <iant@google.com>
* lower-subreg.c (simple_move): Reject PARTIAL_INT modes.
2007-02-07 Roger Sayle <roger@eyesopen.com>
* config/rs6000/rs6000.md (ctz<mode>2, ffs<mode>2, popcount<mode>2,
......
......@@ -136,6 +136,11 @@ simple_move (rtx insn)
== BLKmode))
return NULL_RTX;
/* Reject PARTIAL_INT modes. They are used for processor specific
purposes and it's probably best not to tamper with them. */
if (GET_MODE_CLASS (mode) == MODE_PARTIAL_INT)
return NULL_RTX;
return set;
}
......
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