mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-03-19 01:50:34 +08:00
* lower-subreg.c (simple_move): Reject PARTIAL_INT modes.
From-SVN: r121707
This commit is contained in:
parent
e42ac3dede
commit
1f64a0811b
@ -1,3 +1,7 @@
|
||||
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;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user