From 9fb13bd8de86189ef1f6e2359215d8dd86a0d3cf Mon Sep 17 00:00:00 2001 From: "Dave.Wen" Date: Mon, 25 May 2020 22:23:36 -0700 Subject: softfloat: FIXME quick work around to pass the compilation. Not guarantee the functional correctness. --- softfloat/f16_to_ui8.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/softfloat/f16_to_ui8.c b/softfloat/f16_to_ui8.c index e2afaac..4914464 100644 --- a/softfloat/f16_to_ui8.c +++ b/softfloat/f16_to_ui8.c @@ -38,7 +38,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. #include "specialize.h" #include "softfloat.h" -uint_fast16_t f16_to_ui16( float16_t a, uint_fast8_t roundingMode, bool exact ) +uint_fast8_t f16_to_ui8( float16_t a, uint_fast8_t roundingMode, bool exact ) { uint_fast32_t sig32 = f16_to_ui32(a, roundingMode, exact); -- cgit v1.1