From 9ae4ec4602f0b57ac1a8c5a4d1ab38f96cf6a0c6 Mon Sep 17 00:00:00 2001 From: John Carr Date: Tue, 9 Jun 1998 12:10:02 +0000 Subject: 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 --- gcc/haifa-sched.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gcc/haifa-sched.c') diff --git a/gcc/haifa-sched.c b/gcc/haifa-sched.c index fed2a12..8267170 100644 --- a/gcc/haifa-sched.c +++ b/gcc/haifa-sched.c @@ -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 (); } -- cgit v1.1