sh.md (rsqrtsf2): Adjust for the recent rsqrt_optab changes

* config/sh/sh.md (rsqrtsf2): Adjust for the recent rsqrt_optab changes

From-SVN: r231344
This commit is contained in:
Kaz Kojima 2015-12-07 00:02:14 +00:00
parent 8b1cbdab73
commit c37175df1c
2 changed files with 7 additions and 4 deletions

View File

@ -1,3 +1,7 @@
2015-12-06 Kaz Kojima <kkojima@gcc.gnu.org>
* config/sh/sh.md (rsqrtsf2): Adjust for canonical form with unspec.
2015-12-06 Victoria Stepanyan <victoria.stepanyan@amd.com>
* common/config/i386/i386-common.c

View File

@ -13744,12 +13744,11 @@ label:
(define_insn "rsqrtsf2"
[(set (match_operand:SF 0 "fp_arith_reg_operand" "=f")
(div:SF (match_operand:SF 1 "immediate_operand" "i")
(sqrt:SF (match_operand:SF 2 "fp_arith_reg_operand" "0"))))
(unspec:SF [(match_operand:SF 1 "fp_arith_reg_operand" "0")]
UNSPEC_FSRRA))
(clobber (reg:SI FPSCR_STAT_REG))
(use (reg:SI FPSCR_MODES_REG))]
"TARGET_FPU_ANY && TARGET_FSRRA
&& operands[1] == CONST1_RTX (SFmode)"
"TARGET_FPU_ANY && TARGET_FSRRA"
"fsrra %0"
[(set_attr "type" "fsrra")
(set_attr "fp_mode" "single")])