Message ID | 20241208224844.570491-9-richard.henderson@linaro.org |
---|---|
State | New |
Headers | show |
Series | softfloat, hexagon: Cleanup fmaf | expand |
On 12/8/2024 4:48 PM, Richard Henderson wrote: > There are no special cases for this instruction. > > Signed-off-by: Richard Henderson <richard.henderson@linaro.org> > --- > target/hexagon/op_helper.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/target/hexagon/op_helper.c b/target/hexagon/op_helper.c > index b8b556f4c6..7d459cc6f3 100644 > --- a/target/hexagon/op_helper.c > +++ b/target/hexagon/op_helper.c > @@ -1166,7 +1166,7 @@ float32 HELPER(sffma)(CPUHexagonState *env, float32 RxV, > float32 RsV, float32 RtV) > { > 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); > return RxV; > } Reviewed-by: Brian Cain <brian.cain@oss.qualcomm.com>
diff --git a/target/hexagon/op_helper.c b/target/hexagon/op_helper.c index b8b556f4c6..7d459cc6f3 100644 --- a/target/hexagon/op_helper.c +++ b/target/hexagon/op_helper.c @@ -1166,7 +1166,7 @@ float32 HELPER(sffma)(CPUHexagonState *env, float32 RxV, float32 RsV, float32 RtV) { 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); return RxV; }
There are no special cases for this instruction. Signed-off-by: Richard Henderson <richard.henderson@linaro.org> --- target/hexagon/op_helper.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)