aboutsummaryrefslogtreecommitdiff
path: root/gcc/haifa-sched.c
diff options
context:
space:
mode:
authorJohn Carr <jfc@mit.edu>1998-06-09 12:10:02 +0000
committerRichard Henderson <rth@gcc.gnu.org>1998-06-09 05:10:02 -0700
commit9ae4ec4602f0b57ac1a8c5a4d1ab38f96cf6a0c6 (patch)
tree0d2c7b4057a0425a1729b17536f09cbb726f734a /gcc/haifa-sched.c
parent624a8b3a152430e3413e648aa2bfa0ac79f09af4 (diff)
downloadgcc-9ae4ec4602f0b57ac1a8c5a4d1ab38f96cf6a0c6.zip
gcc-9ae4ec4602f0b57ac1a8c5a4d1ab38f96cf6a0c6.tar.gz
gcc-9ae4ec4602f0b57ac1a8c5a4d1ab38f96cf6a0c6.tar.bz2
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
Diffstat (limited to 'gcc/haifa-sched.c')
-rw-r--r--gcc/haifa-sched.c2
1 files changed, 1 insertions, 1 deletions
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 ();
}