Turn simple constants to preprocessor macros
JerryScript-DCO-1.0-Signed-off-by: Akos Kiss akiss@inf.u-szeged.hu
This commit is contained in:
Vendored
+4
-5
@@ -20,11 +20,10 @@
|
||||
|
||||
#include "fdlibm.h"
|
||||
|
||||
static const double
|
||||
two54 = 1.80143985094819840000e+16, /* 0x43500000, 0x00000000 */
|
||||
twom54 = 5.55111512312578270212e-17, /* 0x3C900000, 0x00000000 */
|
||||
huge = 1.0e+300,
|
||||
tiny = 1.0e-300;
|
||||
#define two54 1.80143985094819840000e+16 /* 0x43500000, 0x00000000 */
|
||||
#define twom54 5.55111512312578270212e-17 /* 0x3C900000, 0x00000000 */
|
||||
#define huge 1.0e+300
|
||||
#define tiny 1.0e-300
|
||||
|
||||
double scalbn (double x, int n)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user