From 25cbb61cdc180a441758b10eb7dd74002de01f68 Mon Sep 17 00:00:00 2001 From: Peter Maydell Date: Mon, 24 Nov 2014 15:47:12 +0000 Subject: softfloat: Implement uint64_to_float64() and uint64_to_float32() Reimplement from scratch the uint64_to_float64() and uint64_to_float32() conversion functions. Signed-off-by: Peter Maydell --- include/fpu/softfloat.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'include') diff --git a/include/fpu/softfloat.h b/include/fpu/softfloat.h index 772f9a11f1..50c2fec8c4 100644 --- a/include/fpu/softfloat.h +++ b/include/fpu/softfloat.h @@ -274,6 +274,8 @@ floatx80 int32_to_floatx80(int32_t STATUS_PARAM); float128 int32_to_float128(int32_t STATUS_PARAM); float32 int64_to_float32(int64_t STATUS_PARAM); float64 int64_to_float64(int64_t STATUS_PARAM); +float32 uint64_to_float32(uint64_t STATUS_PARAM); +float64 uint64_to_float64(uint64_t STATUS_PARAM); floatx80 int64_to_floatx80(int64_t STATUS_PARAM); float128 int64_to_float128(int64_t STATUS_PARAM); float128 uint64_to_float128(uint64_t STATUS_PARAM); -- cgit v1.2.3