Fix the order of "const volatile" to be consistent with
the rest of msun.
This commit is contained in:
parent
79c2e69a3f
commit
53c7f22849
@ -42,7 +42,7 @@ __FBSDID("$FreeBSD$");
|
||||
#include "math.h"
|
||||
#include "math_private.h"
|
||||
|
||||
static volatile const double tiny = 1.0e-300;
|
||||
static const volatile double tiny = 1.0e-300;
|
||||
static const double one = 1.0, two = 2.0, huge = 1.0e300;
|
||||
|
||||
double
|
||||
|
@ -19,7 +19,7 @@ __FBSDID("$FreeBSD$");
|
||||
#include "math.h"
|
||||
#include "math_private.h"
|
||||
|
||||
static volatile const float tiny = 1.0e-30;
|
||||
static const volatile float tiny = 1.0e-30;
|
||||
static const float one=1.0, two=2.0, huge = 1.0e30;
|
||||
|
||||
float
|
||||
|
Loading…
Reference in New Issue
Block a user