diff options
| author | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-07-11 01:51:35 +0000 |
|---|---|---|
| committer | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-07-11 01:51:35 +0000 |
| commit | 647c0aa4f00442a011d60bfa99af9cce2334e805 (patch) | |
| tree | 3c53336052dab06b144349b1bcb4a00380a1a2a4 | |
| parent | ebf7777569e95b819c430c6df22b567c3164ef22 (diff) | |
| download | ppe42-gcc-647c0aa4f00442a011d60bfa99af9cce2334e805.tar.gz ppe42-gcc-647c0aa4f00442a011d60bfa99af9cce2334e805.zip | |
Fix typo in last change
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@43919 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/config/mips/mips.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/mips/mips.c b/gcc/config/mips/mips.c index 48c391590b9..c09a2461dce 100644 --- a/gcc/config/mips/mips.c +++ b/gcc/config/mips/mips.c @@ -942,7 +942,7 @@ double_memory_operand (op, mode) op = adjust_address_nv (op, GET_MODE_CLASS (mode) == MODE_INT ? SImode : SFmode, 4); - return memory_address_p (XEXP (op, 0)); + return memory_address_p (GET_MODE (op), XEXP (op, 0)); } /* Return nonzero if the code of this rtx pattern is EQ or NE. */ |

