Commit 89a5e42b by Jim Wilson Committed by Jim Wilson

Fix typo found by Kaveh Ghazi while looking at -Wall problems.

	* mips.md (movdf_internal1a): Fix misplaced parenthesis in condition.

From-SVN: r18402
parent 5427d758
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.
......
......@@ -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")
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment