URL
https://opencores.org/ocsvn/hf-risc/hf-risc/trunk
Subversion Repositories hf-risc
[/] [hf-risc/] [trunk/] [tools/] [riscv-gnu-toolchain-master/] [glibc/] [sysdeps/] [riscv/] [fpu/] [s_signbitf.c] - Rev 13
Compare with Previous | Blame | View Log
#include <features.h> #undef __USE_EXTERN_INLINES #include <math.h> #include <stdint.h> #include "math_private.h" int __signbitf (float x) { int32_t hx; GET_FLOAT_WORD (hx, x); return hx < 0; }