Align the code of c_math.c
This commit is contained in:
parent
bb244d47ab
commit
cca0de9b39
|
@ -40,7 +40,6 @@
|
|||
#define ICACHE_STORE_TYPEDEF_ATTR __attribute__((aligned(4),packed))
|
||||
#define ICACHE_STORE_ATTR __attribute__((aligned(4)))
|
||||
#define ICACHE_RAM_ATTR __attribute__((section(".iram0.text")))
|
||||
// #define ICACHE_RODATA_ATTR __attribute__((section(".rodata2.text")))
|
||||
|
||||
#define CLIENT_SSL_ENABLE
|
||||
#define GPIO_INTERRUPT_ENABLE
|
||||
|
|
|
@ -9,6 +9,7 @@ double floor(double x)
|
|||
#define MAXEXP 2031 /* (MAX_EXP * 16) - 1 */
|
||||
#define MINEXP -2047 /* (MIN_EXP * 16) - 1 */
|
||||
#define HUGE MAXFLOAT
|
||||
|
||||
double a1[] =
|
||||
{
|
||||
1.0,
|
||||
|
@ -52,6 +53,7 @@ double floor(double x)
|
|||
double q6 = 0.154002904409897646e-3;
|
||||
double q7 = 0.149288526805956082e-4;
|
||||
double k = 0.442695040888963407;
|
||||
|
||||
double pow(double x, double y)
|
||||
{
|
||||
double frexp(), g, ldexp(), r, u1, u2, v, w, w1, w2, y1, y2, z;
|
||||
|
|
Loading…
Reference in New Issue