Browse Source

Merge pull request #2180 from mslijepc/mslijepc_20251210_softfloat-declaration

softfloat: Add f32_to_i8 and f32_to_ui8 function declarations
pull/2186/head
Andrew Waterman 5 months ago
committed by GitHub
parent
commit
9759fef739
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 2
      softfloat/softfloat.h

2
softfloat/softfloat.h

@ -221,6 +221,8 @@ bfloat16_t bf16_recip7( bfloat16_t );
/*----------------------------------------------------------------------------
| 32-bit (single-precision) floating-point operations.
*----------------------------------------------------------------------------*/
int_fast8_t f32_to_i8( float32_t, uint_fast8_t, bool );
uint_fast8_t f32_to_ui8( float32_t, uint_fast8_t, bool );
uint_fast16_t f32_to_ui16( float32_t, uint_fast8_t, bool );
uint_fast32_t f32_to_ui32( float32_t, uint_fast8_t, bool );
uint_fast64_t f32_to_ui64( float32_t, uint_fast8_t, bool );

Loading…
Cancel
Save