summaryrefslogtreecommitdiff
path: root/gnu/egcs
diff options
context:
space:
mode:
authorMiod Vallat <miod@cvs.openbsd.org>2004-06-12 20:58:28 +0000
committerMiod Vallat <miod@cvs.openbsd.org>2004-06-12 20:58:28 +0000
commit8b98d7d21cb635eec8eb4c1598ad6f2dab8f39ad (patch)
tree88c75c647c3dd9529d142c5235aa014c960e9b1c /gnu/egcs
parentd7fd73f5a06d9dbc2521369176103479c060c20e (diff)
Revert 1.10 - there are still bad interactions between block_move_no_loop()
and the reload phase when compiling complex code, and the fix is non-trivial.
Diffstat (limited to 'gnu/egcs')
-rw-r--r--gnu/egcs/gcc/config/m88k/m88k.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/gnu/egcs/gcc/config/m88k/m88k.c b/gnu/egcs/gcc/config/m88k/m88k.c
index a65933002dd..fe75b35ea91 100644
--- a/gnu/egcs/gcc/config/m88k/m88k.c
+++ b/gnu/egcs/gcc/config/m88k/m88k.c
@@ -515,6 +515,7 @@ expand_block_move (dest_mem, src_mem, operands)
block_move_sequence (operands[0], dest_mem, operands[1], src_mem,
bytes, align, 0);
+#if 0
else if (constp && bytes <= best_from_align[target][align] && !TARGET_MEMCPY)
block_move_no_loop (operands[0], dest_mem, operands[1], src_mem,
bytes, align);
@@ -522,6 +523,7 @@ expand_block_move (dest_mem, src_mem, operands)
else if (constp && align == 4 && TARGET_88100 && !TARGET_MEMCPY)
block_move_loop (operands[0], dest_mem, operands[1], src_mem,
bytes, align);
+#endif
else
{