mirror of git://gcc.gnu.org/git/gcc.git
* ifcvt.c (noce_process_if_block): Fail on BLKmode move.
From-SVN: r65596
This commit is contained in:
parent
0d3c880062
commit
798a393534
|
@ -1,3 +1,7 @@
|
||||||
|
2003-04-14 Douglas B Rupp <rupp@gnat.com>
|
||||||
|
|
||||||
|
* ifcvt.c (noce_process_if_block): Fail on BLKmode move.
|
||||||
|
|
||||||
2003-04-14 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
|
2003-04-14 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
|
||||||
|
|
||||||
* stor-layout.c (layout_type, case ARRAY_TYPE): Add missing code to
|
* stor-layout.c (layout_type, case ARRAY_TYPE): Add missing code to
|
||||||
|
|
|
@ -1829,7 +1829,7 @@ noce_process_if_block (ce_info)
|
||||||
|| (SMALL_REGISTER_CLASSES
|
|| (SMALL_REGISTER_CLASSES
|
||||||
&& REGNO (x) < FIRST_PSEUDO_REGISTER))
|
&& REGNO (x) < FIRST_PSEUDO_REGISTER))
|
||||||
{
|
{
|
||||||
if (no_new_pseudos)
|
if (no_new_pseudos || GET_MODE (x) == BLKmode)
|
||||||
return FALSE;
|
return FALSE;
|
||||||
x = gen_reg_rtx (GET_MODE (GET_CODE (x) == STRICT_LOW_PART
|
x = gen_reg_rtx (GET_MODE (GET_CODE (x) == STRICT_LOW_PART
|
||||||
? XEXP (x, 0) : x));
|
? XEXP (x, 0) : x));
|
||||||
|
|
Loading…
Reference in New Issue