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 547b5c4 commit 853c1ffCopy full SHA for 853c1ff
Modules/_sre/sre.c
@@ -91,12 +91,8 @@ static unsigned int sre_toupper(unsigned int ch) {
91
92
/* -------------------------------------------------------------------- */
93
94
-#if defined(_MSC_VER)
95
-# if defined(__clang__)
96
-# pragma optimize("", on)
97
-# else
98
-# pragma optimize("gt", on) /* doesn't seem to make much difference... */
99
-# endif
+#if defined(_MSC_VER) && !defined(__clang__)
+#pragma optimize("agtw", on) /* doesn't seem to make much difference... */
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