diff options
author | Emilio G. Cota | 2018-09-12 23:35:33 +0200 |
---|---|---|
committer | Richard Henderson | 2018-10-05 19:57:41 +0200 |
commit | c953da8f0be5e026d1c9128660736d72294feb3e (patch) | |
tree | 0e13664f4736ad38d4d1ed958c8a7aacabc0bc78 /fpu | |
parent | Merge remote-tracking branch 'remotes/cohuck/tags/s390x-20181004' into staging (diff) | |
download | qemu-c953da8f0be5e026d1c9128660736d72294feb3e.tar.gz qemu-c953da8f0be5e026d1c9128660736d72294feb3e.tar.xz qemu-c953da8f0be5e026d1c9128660736d72294feb3e.zip |
softfloat: remove float64_trunc_to_int
It has not had users since f83311e476 ("target-m68k: use floatx80
internally", 2017-06-21).
Note that no other bit-width has floatX_trunc_to_int.
Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
Signed-off-by: Emilio G. Cota <cota@braap.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'fpu')
-rw-r--r-- | fpu/softfloat.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/fpu/softfloat.c b/fpu/softfloat.c index 59ca356d0e..9405f12a03 100644 --- a/fpu/softfloat.c +++ b/fpu/softfloat.c @@ -1409,13 +1409,6 @@ float64 float64_round_to_int(float64 a, float_status *s) return float64_round_pack_canonical(pr, s); } -float64 float64_trunc_to_int(float64 a, float_status *s) -{ - FloatParts pa = float64_unpack_canonical(a, s); - FloatParts pr = round_to_int(pa, float_round_to_zero, 0, s); - return float64_round_pack_canonical(pr, s); -} - /* * Returns the result of converting the floating-point value `a' to * the two's complement integer format. The conversion is performed |