Welcome to mirror list, hosted at ThFree Co, Russian Federation.

log2l.c « mingwex « mingw « winsup - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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;
}