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 daf6262 commit ff6bb0aCopy full SHA for ff6bb0a
Objects/complexobject.c
@@ -55,6 +55,10 @@ _Py_c_prod(Py_complex a, Py_complex b)
55
return r;
56
}
57
58
+/* Avoid bad optimization on Windows ARM64 until the compiler is fixed */
59
+#ifdef _M_ARM64
60
+#pragma optimize("", off)
61
+#endif
62
Py_complex
63
_Py_c_quot(Py_complex a, Py_complex b)
64
{
@@ -112,6 +116,9 @@ _Py_c_quot(Py_complex a, Py_complex b)
112
116
113
117
114
118
119
120
+#pragma optimize("", on)
121
115
122
123
124
_Py_c_pow(Py_complex a, Py_complex b)
0 commit comments