• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #if !defined(__mips_soft_float) && defined(__mips_abs2008)
2 
3 #include <math.h>
4 
fabsf(float x)5 float fabsf(float x)
6 {
7 	float r;
8 	__asm__("abs.s %0,%1" : "=f"(r) : "f"(x));
9 	return r;
10 }
11 
12 #else
13 
14 #include "../fabsf.c"
15 
16 #endif
17