Commit 798a3935 by Douglas B Rupp Committed by Richard Kenner

* ifcvt.c (noce_process_if_block): Fail on BLKmode move.

From-SVN: r65596
parent 0d3c8800
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) ...@@ -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));
......
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