mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 00:37:25 +01:00
[liba] Fixed Gamma function bug.
There was a problem with the definition of ldexp, used in b_log__D.c Change-Id: I83d012815e38b76efa730c1a3d259ec276e15f11
This commit is contained in:
@@ -178,7 +178,7 @@ double trunc(double x);
|
||||
#define fabs(x) __builtin_fabs(x)
|
||||
#define floor(x) __builtin_floor(x)
|
||||
#define fmod(x, y) __builtin_fmod(x, y)
|
||||
#define ldexp(x, n) __builtin_ldexp(x, n)
|
||||
#define ldexp(x, n) __builtin_scalbn(x, n)
|
||||
#define lgamma(x) __builtin_lgamma(x)
|
||||
#define lgamma_r(x, signgamp) __builtin_lgamma_r(x, signgamp)
|
||||
#define log(x) __builtin_log(x)
|
||||
|
||||
Reference in New Issue
Block a user