From 1fae2d8044cfa74b65a24f7d80a32168423d46b2 Mon Sep 17 00:00:00 2001 From: Kazu Hirata Date: Wed, 3 Oct 2007 23:42:32 +0000 Subject: m68k.c (m68k_output_movem): Use the MOTOROLA if MOTOROLA is to true. * config/m68k/m68k.c (m68k_output_movem): Use the MOTOROLA if MOTOROLA is to true. From-SVN: r128994 --- gcc/config/m68k/m68k.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'gcc/config') diff --git a/gcc/config/m68k/m68k.c b/gcc/config/m68k/m68k.c index d2b023f..952b947 100644 --- a/gcc/config/m68k/m68k.c +++ b/gcc/config/m68k/m68k.c @@ -3318,16 +3318,16 @@ m68k_output_movem (rtx *operands, rtx pattern, if (FP_REGNO_P (REGNO (XEXP (XVECEXP (pattern, 0, first), store_p)))) { if (store_p) - return MOTOROLA ? "fmovm %1,%a0" : "fmovem %1,%a0"; + return "fmovem %1,%a0"; else - return MOTOROLA ? "fmovm %a0,%1" : "fmovem %a0,%1"; + return "fmovem %a0,%1"; } else { if (store_p) - return MOTOROLA ? "movm.l %1,%a0" : "moveml %1,%a0"; + return "movem%.l %1,%a0"; else - return MOTOROLA ? "movm.l %a0,%1" : "moveml %a0,%1"; + return "movem%.l %a0,%1"; } } -- cgit v1.1