diff options
author | H.J. Lu <hongjiu.lu@intel.com> | 2006-08-29 18:47:20 +0000 |
---|---|---|
committer | H.J. Lu <hjl@gcc.gnu.org> | 2006-08-29 11:47:20 -0700 |
commit | e370818b216c5d9fd9b4a50403cd96817aabc107 (patch) | |
tree | 5e550116737874e5305e49a2eb8e38fc2757b769 | |
parent | 227e9f621bc5717783ef410e3ea7ee95f5227ea0 (diff) | |
download | gcc-e370818b216c5d9fd9b4a50403cd96817aabc107.zip gcc-e370818b216c5d9fd9b4a50403cd96817aabc107.tar.gz gcc-e370818b216c5d9fd9b4a50403cd96817aabc107.tar.bz2 |
i386.md (*fop_df_comm_mixed): Match DF operands instead of SF operands.
2006-08-29 H.J. Lu <hongjiu.lu@intel.com>
* config/i386/i386.md (*fop_df_comm_mixed): Match DF operands
instead of SF operands.
(*fop_df_comm_sse): Likewise.
(*fop_df_comm_i387): Likewise.
(*fop_df_1_mixed): Likewise.
(*fop_df_1_sse): Likewise.
From-SVN: r116569
-rw-r--r-- | gcc/ChangeLog | 9 | ||||
-rw-r--r-- | gcc/config/i386/i386.md | 16 |
2 files changed, 17 insertions, 8 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index faf7f8b..f296e86 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,12 @@ +2006-08-29 H.J. Lu <hongjiu.lu@intel.com> + + * config/i386/i386.md (*fop_df_comm_mixed): Match DF operands + instead of SF operands. + (*fop_df_comm_sse): Likewise. + (*fop_df_comm_i387): Likewise. + (*fop_df_1_mixed): Likewise. + (*fop_df_1_sse): Likewise. + 2006-08-29 Nathan Sidwell <nathan@codesourcery.com> J"orn Rennecke <joern.rennecke@st.com> diff --git a/gcc/config/i386/i386.md b/gcc/config/i386/i386.md index a608b74..09c39a0 100644 --- a/gcc/config/i386/i386.md +++ b/gcc/config/i386/i386.md @@ -14681,10 +14681,10 @@ "* return output_387_binary_op (insn, operands);" [(set (attr "type") (if_then_else (eq_attr "alternative" "1") - (if_then_else (match_operand:SF 3 "mult_operator" "") + (if_then_else (match_operand:DF 3 "mult_operator" "") (const_string "ssemul") (const_string "sseadd")) - (if_then_else (match_operand:SF 3 "mult_operator" "") + (if_then_else (match_operand:DF 3 "mult_operator" "") (const_string "fmul") (const_string "fop")))) (set_attr "mode" "DF")]) @@ -14699,7 +14699,7 @@ && (GET_CODE (operands[1]) != MEM || GET_CODE (operands[2]) != MEM)" "* return output_387_binary_op (insn, operands);" [(set (attr "type") - (if_then_else (match_operand:SF 3 "mult_operator" "") + (if_then_else (match_operand:DF 3 "mult_operator" "") (const_string "ssemul") (const_string "sseadd"))) (set_attr "mode" "DF")]) @@ -14714,7 +14714,7 @@ && (GET_CODE (operands[1]) != MEM || GET_CODE (operands[2]) != MEM)" "* return output_387_binary_op (insn, operands);" [(set (attr "type") - (if_then_else (match_operand:SF 3 "mult_operator" "") + (if_then_else (match_operand:DF 3 "mult_operator" "") (const_string "fmul") (const_string "fop"))) (set_attr "mode" "DF")]) @@ -14730,10 +14730,10 @@ "* return output_387_binary_op (insn, operands);" [(set (attr "type") (cond [(and (eq_attr "alternative" "2") - (match_operand:SF 3 "mult_operator" "")) + (match_operand:DF 3 "mult_operator" "")) (const_string "ssemul") (and (eq_attr "alternative" "2") - (match_operand:SF 3 "div_operator" "")) + (match_operand:DF 3 "div_operator" "")) (const_string "ssediv") (eq_attr "alternative" "2") (const_string "sseadd") @@ -14755,9 +14755,9 @@ "* return output_387_binary_op (insn, operands);" [(set_attr "mode" "DF") (set (attr "type") - (cond [(match_operand:SF 3 "mult_operator" "") + (cond [(match_operand:DF 3 "mult_operator" "") (const_string "ssemul") - (match_operand:SF 3 "div_operator" "") + (match_operand:DF 3 "div_operator" "") (const_string "ssediv") ] (const_string "sseadd")))]) |