These are supposed to be used in tail call positions when handling special cases in new code. (fp exceptions may be raised "naturally" by the common code path if special casing is more effort.) This implements the error handling apis used in https://github.com/ARM-software/optimized-routines without errno setting.
7 lines
96 B
C
7 lines
96 B
C
#include "libm.h"
|
|
|
|
float __math_oflowf(uint32_t sign)
|
|
{
|
|
return __math_xflowf(sign, 0x1p97f);
|
|
}
|