Disable SIMD in printf functions

This commit is contained in:
Alex 2023-04-02 15:48:23 +03:00
parent d8a3c5a127
commit 434589b73c
Signed by untrusted user who does not match committer: enderice2
GPG Key ID: EACC3AD603BAB4DD

View File

@ -77,12 +77,12 @@
// Support for the decimal notation floating point conversion specifiers (%f, %F)
#ifndef PRINTF_SUPPORT_DECIMAL_SPECIFIERS
#define PRINTF_SUPPORT_DECIMAL_SPECIFIERS 1
// #define PRINTF_SUPPORT_DECIMAL_SPECIFIERS 1
#endif
// Support for the exponential notation floating point conversion specifiers (%e, %g, %E, %G)
#ifndef PRINTF_SUPPORT_EXPONENTIAL_SPECIFIERS
#define PRINTF_SUPPORT_EXPONENTIAL_SPECIFIERS 1
// #define PRINTF_SUPPORT_EXPONENTIAL_SPECIFIERS 1
#endif
// Support for the length write-back specifier (%n)