OSDN Git Service

* config/mips/mips.md (adddi3): Fix typo in mips16 stack pointer code.
authorrsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 30 Oct 2003 18:13:43 +0000 (18:13 +0000)
committerrsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 30 Oct 2003 18:13:43 +0000 (18:13 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@73096 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/config/mips/mips.md

index 8a8dfd0..d32301c 100644 (file)
@@ -1,5 +1,9 @@
 2003-10-30  Richard Sandiford  <rsandifo@redhat.com>
 
+       * config/mips/mips.md (adddi3): Fix typo in mips16 stack pointer code.
+
+2003-10-30  Richard Sandiford  <rsandifo@redhat.com>
+
        * config/mips/mips.md (mov_lwl): Use memory_operand where appropriate.
        (mov_lwr, mov_swl, mov_swr): Likewise.
        (mov_ldl, mov_ldr, mov_sdl, mov_sdr): Likewise.
index 7a082b4..a13878d 100644 (file)
       rtx tmp = gen_reg_rtx (DImode);
 
       emit_move_insn (tmp, operands[1]);
-      emit_insn (gen_addsi3 (tmp, tmp, operands[2]));
+      emit_insn (gen_adddi3 (tmp, tmp, operands[2]));
       emit_move_insn (operands[0], tmp);
       DONE;
     }