mirror of
https://gcc.gnu.org/git/gcc.git
synced 2024-12-02 16:23:56 +08:00
* 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>
|
||||
|
||||
* 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
|
||||
&& REGNO (x) < FIRST_PSEUDO_REGISTER))
|
||||
{
|
||||
if (no_new_pseudos)
|
||||
if (no_new_pseudos || GET_MODE (x) == BLKmode)
|
||||
return FALSE;
|
||||
x = gen_reg_rtx (GET_MODE (GET_CODE (x) == STRICT_LOW_PART
|
||||
? XEXP (x, 0) : x));
|
||||
|
Loading…
Reference in New Issue
Block a user