Don't allow both ENDIANNESSes to be set
See discussion on 2da81fa80c
Explicitly set `MP_ENDIANNESS_LITTLE` because that's the #define that is used in code elsewhere.
This commit is contained in:
parent
bbae42d62f
commit
cc83737d35
|
@ -187,6 +187,10 @@ typedef double mp_float_t;
|
||||||
// Just because most archs are such?
|
// Just because most archs are such?
|
||||||
#define MP_ENDIANNESS_LITTLE (1)
|
#define MP_ENDIANNESS_LITTLE (1)
|
||||||
#endif
|
#endif
|
||||||
|
// Ensure we don't accidentally set both endiannesses
|
||||||
|
#if MP_ENDIANNESS_BIG
|
||||||
|
#define MP_ENDIANNESS_LITTLE (0)
|
||||||
|
#endif
|
||||||
|
|
||||||
// printf format spec to use for machine_int_t and friends
|
// printf format spec to use for machine_int_t and friends
|
||||||
#ifndef INT_FMT
|
#ifndef INT_FMT
|
||||||
|
|
Loading…
Reference in New Issue