target/hexagon: Use float32_muladd for helper_sffma
There are no special cases for this instruction. Reviewed-by: Brian Cain <brian.cain@oss.qualcomm.com> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
This commit is contained in:
parent
6e7422dc22
commit
655a83cac1
@ -1054,7 +1054,7 @@ float32 HELPER(sffma)(CPUHexagonState *env, float32 RxV,
|
|||||||
float32 RsV, float32 RtV)
|
float32 RsV, float32 RtV)
|
||||||
{
|
{
|
||||||
arch_fpop_start(env);
|
arch_fpop_start(env);
|
||||||
RxV = internal_fmafx(RsV, RtV, RxV, 0, &env->fp_status);
|
RxV = float32_muladd(RsV, RtV, RxV, 0, &env->fp_status);
|
||||||
arch_fpop_end(env);
|
arch_fpop_end(env);
|
||||||
return RxV;
|
return RxV;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user