aboutsummaryrefslogtreecommitdiff
path: root/gcc
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
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')
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/haifa-sched.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 734f2e6..65bd3f6 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+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.
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 ();
}