From 6289a5665bf75af77176539651268d2fe8ccb60f Mon Sep 17 00:00:00 2001 From: Stefan Reinauer Date: Sun, 31 May 2026 00:32:59 -0700 Subject: [PATCH] softfloat: drop stale float_raise declaration float_raise() is provided as a static inline helper by softfloat-specialize.h. Remove the separate external prototype from softfloat.h so the header does not advertise a non-existent external definition. --- softfloat/softfloat.h | 7 ------- 1 file changed, 7 deletions(-) diff --git a/softfloat/softfloat.h b/softfloat/softfloat.h index 5ec0f812..34d765e2 100644 --- a/softfloat/softfloat.h +++ b/softfloat/softfloat.h @@ -322,13 +322,6 @@ static inline int8_t inf_clear_intbit(float_status *status) return status->floatx80_special_flags & infinity_clear_intbit; } -/*---------------------------------------------------------------------------- -| Routine to raise any or all of the software IEC/IEEE floating-point -| exception flags. -*----------------------------------------------------------------------------*/ -void float_raise(uint8_t flags, float_status *status); - - /*---------------------------------------------------------------------------- | The pattern for a default generated single-precision NaN. *----------------------------------------------------------------------------*/ -- 2.47.3