Commit 9ae4ec46 by John Carr Committed by Richard Henderson

haifa-sched.c (update_flow_info): Use UNITS_PER_WORD...

        * haifa-sched.c (update_flow_info): Use UNITS_PER_WORD, not MOVE_MAX,
        as the threshold to permit splitting memory operations.

From-SVN: r20374
parent 624a8b3a
Tue Jun 9 12:10:27 1998 John Carr <jfc@mit.edu>
* haifa-sched.c (update_flow_info): Use UNITS_PER_WORD, not MOVE_MAX,
as the threshold to permit splitting memory operations.
Tue Jun 9 12:36:16 1998 Jeffrey A Law (law@cygnus.com)
* Makefile.in (LIB2FUNCS_EH): Define. Just "_eh" for now.
......
......@@ -7996,7 +7996,7 @@ update_flow_info (notes, first, last, orig_insn)
break;
/* Likewise for multi-word memory references. */
if (GET_CODE (orig_dest) == MEM
&& SIZE_FOR_MODE (orig_dest) > MOVE_MAX)
&& SIZE_FOR_MODE (orig_dest) > UNITS_PER_WORD)
break;
abort ();
}
......
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