target/arm: Move 'env' argument of recps_f32 and rsqrts_f32 helpers to usual place
commit26c6f695cfd2a3ccddb4d015a25b56f56aa62928
authorPeter Maydell <peter.maydell@linaro.org>
Tue, 12 May 2020 16:39:02 +0000 (12 17:39 +0100)
committerPeter Maydell <peter.maydell@linaro.org>
Thu, 14 May 2020 14:03:09 +0000 (14 15:03 +0100)
tree7cb9354d41af1558645938b94628b12b0b35e505
parent727ff1d63213e6666e511956903b9e97a339ec7e
target/arm: Move 'env' argument of recps_f32 and rsqrts_f32 helpers to usual place

The usual location for the env argument in the argument list of a TCG helper
is immediately after the return-value argument. recps_f32 and rsqrts_f32
differ in that they put it at the end.

Move the env argument to its usual place; this will allow us to
more easily use these helper functions with the gvec APIs.

Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-id: 20200512163904.10918-16-peter.maydell@linaro.org
target/arm/helper.h
target/arm/translate.c
target/arm/vfp_helper.c