[CRT] Add a generic C version of exp2(f) and use it for all architecture

This commit is contained in:
Jérôme Gardou 2021-04-09 14:33:27 +02:00
parent a19ca409ae
commit 199adee3fe
4 changed files with 32 additions and 40 deletions

13
sdk/lib/crt/math/exp2.c Normal file
View file

@ -0,0 +1,13 @@
#include <math.h>
_Check_return_
double
__cdecl
exp2(
_In_ double x)
{
/* This below avoids clang to optimize our pow call to exp2 */
static const TWO = 2.0;
return pow(TWO, x);
}