From 89a5e42bfd0bf3deb6a86fe89b85218422bf1260 Mon Sep 17 00:00:00 2001 From: Jim Wilson Date: Wed, 4 Mar 1998 12:15:47 +0000 Subject: [PATCH] Fix typo found by Kaveh Ghazi while looking at -Wall problems. * mips.md (movdf_internal1a): Fix misplaced parenthesis in condition. From-SVN: r18402 --- gcc/ChangeLog | 4 ++++ gcc/config/mips/mips.md | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index c1f071d4089..a73b66eb2d7 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +Wed Mar 4 12:11:36 1998 Jim Wilson + + * mips.md (movdf_internal1a): Fix misplaced parenthesis in condition. + Wed Mar 4 18:47:48 1998 J"orn Rennecke * final.c (final_scan_insn, case CODE_LABEL: Cleanup. diff --git a/gcc/config/mips/mips.md b/gcc/config/mips/mips.md index 2745797610f..7c4ceca3b3a 100644 --- a/gcc/config/mips/mips.md +++ b/gcc/config/mips/mips.md @@ -5589,11 +5589,11 @@ move\\t%0,%z4\\n\\ "TARGET_HARD_FLOAT && (TARGET_FLOAT64 && !TARGET_64BIT) && TARGET_DOUBLE_FLOAT && (register_operand (operands[0], DFmode) - || register_operand (operands[1], DFmode)) + || register_operand (operands[1], DFmode) || (GET_CODE (operands [0]) == MEM && ((GET_CODE (operands[1]) == CONST_INT && INTVAL (operands[1]) == 0) - || operands[1] == CONST0_RTX (DFmode)))" + || operands[1] == CONST0_RTX (DFmode))))" "* return mips_move_2words (operands, insn); " [(set_attr "type" "move,load,store,store,store,store,load,load,load,load,store,store") (set_attr "mode" "DF") -- 2.30.2