diff options
author | Richard Stallman <rms@gnu.org> | 1993-11-10 04:41:46 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1993-11-10 04:41:46 +0000 |
commit | b0565769c17e154a6c832f394bfd95332accceb0 (patch) | |
tree | 4a7b5d6c889e0d0c9a60c6d488bb0b82bdb50a09 /gcc/config/mips | |
parent | 4d889da99547edd69603738a14ea0560537bdb5e (diff) | |
download | gcc-b0565769c17e154a6c832f394bfd95332accceb0.zip gcc-b0565769c17e154a6c832f394bfd95332accceb0.tar.gz gcc-b0565769c17e154a6c832f394bfd95332accceb0.tar.bz2 |
(adddi3): Use DImode not SImode in force_reg call.
From-SVN: r6049
Diffstat (limited to 'gcc/config/mips')
-rw-r--r-- | gcc/config/mips/mips.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/mips/mips.md b/gcc/config/mips/mips.md index 96192c2..c5b116a 100644 --- a/gcc/config/mips/mips.md +++ b/gcc/config/mips/mips.md @@ -337,7 +337,7 @@ " { if (GET_CODE (operands[2]) == CONST_INT && INTVAL (operands[2]) == -32768) - operands[2] = force_reg (SImode, operands[2]); + operands[2] = force_reg (DImode, operands[2]); operands[3] = gen_reg_rtx (SImode); }") |