diff options
author | Jim Wilson <wilson@cygnus.com> | 1998-03-04 12:15:47 +0000 |
---|---|---|
committer | Jim Wilson <wilson@gcc.gnu.org> | 1998-03-04 04:15:47 -0800 |
commit | 89a5e42bfd0bf3deb6a86fe89b85218422bf1260 (patch) | |
tree | 730189b9896eafb752555de2e1ef389b658d0212 | |
parent | 5427d758ddd8257a5f24408e036e062c51607972 (diff) | |
download | gcc-89a5e42bfd0bf3deb6a86fe89b85218422bf1260.zip gcc-89a5e42bfd0bf3deb6a86fe89b85218422bf1260.tar.gz gcc-89a5e42bfd0bf3deb6a86fe89b85218422bf1260.tar.bz2 |
Fix typo found by Kaveh Ghazi while looking at -Wall problems.
* mips.md (movdf_internal1a): Fix misplaced parenthesis in condition.
From-SVN: r18402
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/config/mips/mips.md | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index c1f071d..a73b66e 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -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. diff --git a/gcc/config/mips/mips.md b/gcc/config/mips/mips.md index 2745797..7c4ceca 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") |