summaryrefslogtreecommitdiffstats
path: root/winsup/mingw/mingwex/log2l.c
blob: c67d7701db8a8733b4cdbf86d9a5ebdc51f0f004 (plain)
1
2
3
4
5
6
7
8
#include <math.h>
long double 
log2l (long double  _x)
{
  long double  retval;
  __asm__ ("fyl2x;" : "=t" (retval) : "0" (_x), "u" (1.0L) : "st(1)");
  return retval;
}