diff options
author | Víctor Colombo <victor.colombo@eldorado.org.br> | 2022-09-05 09:37:46 -0300 |
---|---|---|
committer | Daniel Henrique Barboza <danielhb413@gmail.com> | 2022-09-20 10:54:06 -0300 |
commit | 74177ec661cc3d8553cc645632a9b6fdfe1b85e5 (patch) | |
tree | ce48cd746a2d3998fd8a57728f6e2062bd08d2c5 /target/ppc/helper.h | |
parent | 4896c15bc36591436f02c3bfc4c828099be2b1f8 (diff) | |
download | qemu-74177ec661cc3d8553cc645632a9b6fdfe1b85e5.zip qemu-74177ec661cc3d8553cc645632a9b6fdfe1b85e5.tar.gz qemu-74177ec661cc3d8553cc645632a9b6fdfe1b85e5.tar.bz2 |
target/ppc: Merge fsqrt and fsqrts helpers
These two helpers are almost identical, differing only by the softfloat
operation it calls. Merge them into one using a macro.
Also, take this opportunity to capitalize the helper name as we moved
the instruction to decodetree in a previous patch.
Signed-off-by: Víctor Colombo <victor.colombo@eldorado.org.br>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20220905123746.54659-4-victor.colombo@eldorado.org.br>
Signed-off-by: Daniel Henrique Barboza <danielhb413@gmail.com>
Diffstat (limited to 'target/ppc/helper.h')
-rw-r--r-- | target/ppc/helper.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/target/ppc/helper.h b/target/ppc/helper.h index 122b2e9..57eee07 100644 --- a/target/ppc/helper.h +++ b/target/ppc/helper.h @@ -120,8 +120,8 @@ DEF_HELPER_4(fmadds, i64, env, i64, i64, i64) DEF_HELPER_4(fmsubs, i64, env, i64, i64, i64) DEF_HELPER_4(fnmadds, i64, env, i64, i64, i64) DEF_HELPER_4(fnmsubs, i64, env, i64, i64, i64) -DEF_HELPER_2(fsqrt, f64, env, f64) -DEF_HELPER_2(fsqrts, f64, env, f64) +DEF_HELPER_2(FSQRT, f64, env, f64) +DEF_HELPER_2(FSQRTS, f64, env, f64) DEF_HELPER_2(fre, i64, env, i64) DEF_HELPER_2(fres, i64, env, i64) DEF_HELPER_2(frsqrte, i64, env, i64) |