]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
m68k.c (m68k_output_movem): Use the MOTOROLA if MOTOROLA is to true.
authorKazu Hirata <kazu@codesourcery.com>
Wed, 3 Oct 2007 23:42:32 +0000 (23:42 +0000)
committerKazu Hirata <kazu@gcc.gnu.org>
Wed, 3 Oct 2007 23:42:32 +0000 (23:42 +0000)
* config/m68k/m68k.c (m68k_output_movem): Use the MOTOROLA if
MOTOROLA is to true.

From-SVN: r128994

gcc/ChangeLog
gcc/config/m68k/m68k.c

index 45a840f72315b13bfd4bdf2f98d790c7fce47127..af1deaeb336e01211d6bca096061d9043f21b70c 100644 (file)
@@ -1,3 +1,8 @@
+2007-10-04  Kazu Hirata  <kazu@codesourcery.com>
+
+       * config/m68k/m68k.c (m68k_output_movem): Use the MOTOROLA if
+       MOTOROLA is to true.
+
 2007-10-03  Richard Sandiford  <rsandifo@nildram.co.uk>
 
        PR target/33635
index d2b023f416064e6fbe379e6ee4896945cf99a040..952b94783d451bfd322ba9dee5a9692640ac8c38 100644 (file)
@@ -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";
     }
 }