We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 18249d9 commit 547b5c4Copy full SHA for 547b5c4
Modules/_sre/sre.c
@@ -92,7 +92,11 @@ static unsigned int sre_toupper(unsigned int ch) {
92
/* -------------------------------------------------------------------- */
93
94
#if defined(_MSC_VER)
95
-#pragma optimize("agtw", on) /* doesn't seem to make much difference... */
+# if defined(__clang__)
96
+# pragma optimize("", on)
97
+# else
98
+# pragma optimize("gt", on) /* doesn't seem to make much difference... */
99
+# endif
100
#pragma warning(disable: 4710) /* who cares if functions are not inlined ;-) */
101
/* fastest possible local call under MSVC */
102
#define LOCAL(type) static __inline type __fastcall
0 commit comments