From 00d4a6d40ea150ae845485b371e6458bdc350646 Mon Sep 17 00:00:00 2001 From: Richard Sandiford Date: Thu, 30 Oct 2003 18:13:43 +0000 Subject: [PATCH] * config/mips/mips.md (adddi3): Fix typo in mips16 stack pointer code. From-SVN: r73096 --- gcc/ChangeLog | 4 ++++ gcc/config/mips/mips.md | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 8a8dfd012107..d32301ce4bdd 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2003-10-30 Richard Sandiford + + * config/mips/mips.md (adddi3): Fix typo in mips16 stack pointer code. + 2003-10-30 Richard Sandiford * config/mips/mips.md (mov_lwl): Use memory_operand where appropriate. diff --git a/gcc/config/mips/mips.md b/gcc/config/mips/mips.md index 7a082b46de5c..a13878d458d2 100644 --- a/gcc/config/mips/mips.md +++ b/gcc/config/mips/mips.md @@ -883,7 +883,7 @@ 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; }