* config/mn10300/mn10300.md (movdi, movdf): Use high/low for movu
authoraoliva <aoliva@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 22 Jun 2004 18:38:00 +0000 (18:38 +0000)
committeraoliva <aoliva@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 22 Jun 2004 18:38:00 +0000 (18:38 +0000)
operands.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@83510 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/config/mn10300/mn10300.md

index 21f780e..33a58d4 100644 (file)
@@ -1,3 +1,8 @@
+2004-06-22  Alexandre Oliva  <aoliva@redhat.com>
+
+       * config/mn10300/mn10300.md (movdi, movdf): Use high/low for movu
+       operands.
+
 2004-06-22  Dale Johannesen  <dalej@apple.com>
 
        * config/rs6000/rs6000.c (legitimate_offset_address_p): Make
index 5746ecd..4333ad2 100644 (file)
                         == EXTENDED_REGS)
                     && (((val[0] & 0x80) && ! (val[0] & 0xffffff00))
                         || ((val[0] & 0x800000) && ! (val[0] & 0xff000000))))
-             output_asm_insn (\"movu %1,%0\", operands);
+             output_asm_insn (\"movu %L1,%L0\", operands);
            else
              output_asm_insn (\"mov %L1,%L0\", operands);
 
                         == EXTENDED_REGS)
                     && (((val[1] & 0x80) && ! (val[1] & 0xffffff00))
                         || ((val[1] & 0x800000) && ! (val[1] & 0xff000000))))
-             output_asm_insn (\"movu %1,%0\", operands);
+             output_asm_insn (\"movu %H1,%H0\", operands);
            else
              output_asm_insn (\"mov %H1,%H0\", operands);
            return \"\";
                         == EXTENDED_REGS)
                     && (((val[0] & 0x80) && ! (val[0] & 0xffffff00))
                         || ((val[0] & 0x800000) && ! (val[0] & 0xff000000))))
-             output_asm_insn (\"movu %1,%0\", operands);
+             output_asm_insn (\"movu %L1,%L0\", operands);
            else
              output_asm_insn (\"mov %L1,%L0\", operands);
 
                         == EXTENDED_REGS)
                     && (((val[1] & 0x80) && ! (val[1] & 0xffffff00))
                         || ((val[1] & 0x800000) && ! (val[1] & 0xff000000))))
-             output_asm_insn (\"movu %1,%0\", operands);
+             output_asm_insn (\"movu %H1,%H0\", operands);
            else
              output_asm_insn (\"mov %H1,%H0\", operands);
            return \"\";