Fix typo found by Kaveh Ghazi while looking at -Wall problems.
authorJim Wilson <wilson@cygnus.com>
Wed, 4 Mar 1998 12:15:47 +0000 (12:15 +0000)
committerJim Wilson <wilson@gcc.gnu.org>
Wed, 4 Mar 1998 12:15:47 +0000 (04:15 -0800)
* mips.md (movdf_internal1a): Fix misplaced parenthesis in condition.

From-SVN: r18402

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

index c1f071d40898f63c9afcd2c7ada3550e37aaac56..a73b66eb2d71568a5090fd43cc3bbfbbcab7ff14 100644 (file)
@@ -1,3 +1,7 @@
+Wed Mar  4 12:11:36 1998  Jim Wilson  <wilson@cygnus.com>
+
+       * mips.md (movdf_internal1a): Fix misplaced parenthesis in condition.
+
 Wed Mar  4 18:47:48 1998  J"orn Rennecke <amylaar@cygnus.co.uk>
 
        * final.c (final_scan_insn, case CODE_LABEL: Cleanup.
index 2745797610fc642e87200f093bdaf314af168c13..7c4ceca3b3ad487733cf94d3a217c49d75ed82d0 100644 (file)
@@ -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")