OpenCores
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_signbit.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 __signbit (double x)
{
#ifdef __riscv64
  int64_t hx;
  EXTRACT_WORDS64 (hx, x);
  return hx < 0;
#else
  int32_t hx;
  GET_HIGH_WORD (hx, x);
  return hx < 0;
#endif
}
 

Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.