* haifa-sched.c (update_flow_info): Use UNITS_PER_WORD, not MOVE_MAX,
as the threshold to permit splitting memory operations.
From-SVN: r20374
+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.
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 ();
}