summaryrefslogtreecommitdiff
path: root/gnu/egcs/gcc/config
diff options
context:
space:
mode:
authorMiod Vallat <miod@cvs.openbsd.org>2004-06-09 23:11:59 +0000
committerMiod Vallat <miod@cvs.openbsd.org>2004-06-09 23:11:59 +0000
commitef58d4c5234d4038611eb54e4245ddf08ac1f99f (patch)
treeb46769ce0d571a5c03d1d952419acbeee4c1cab8 /gnu/egcs/gcc/config
parenta9f837dc52e386535a5e0d5081c4fea2e07276e3 (diff)
The GO_IF_LEGITIMATE_ADDRESS fix in m88k.h, as well as all the FUNCTION_ARG
and FUNCTION_ARG_ADVANCE fixes in m88k.c, allow the optimized bcopy sequences to be reliable again, so enable them back.
Diffstat (limited to 'gnu/egcs/gcc/config')
-rw-r--r--gnu/egcs/gcc/config/m88k/m88k.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/gnu/egcs/gcc/config/m88k/m88k.c b/gnu/egcs/gcc/config/m88k/m88k.c
index 8cb0b533139..a65933002dd 100644
--- a/gnu/egcs/gcc/config/m88k/m88k.c
+++ b/gnu/egcs/gcc/config/m88k/m88k.c
@@ -515,7 +515,6 @@ expand_block_move (dest_mem, src_mem, operands)
block_move_sequence (operands[0], dest_mem, operands[1], src_mem,
bytes, align, 0);
-#if 0 /* XXX */
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);
@@ -524,7 +523,6 @@ expand_block_move (dest_mem, src_mem, operands)
block_move_loop (operands[0], dest_mem, operands[1], src_mem,
bytes, align);
-#endif
else
{
#ifdef TARGET_MEM_FUNCTIONS