Skip to content

Commit c971274

Browse files
committed
Make sure frame pointer is used in PyEval_EvalDefault()
1 parent 98073f5 commit c971274

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Python/ceval.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1147,7 +1147,7 @@ _PyEval_GetIter(_PyStackRef iterable, _PyStackRef *index_or_null, int yield_from
11471147
* (prior to GCC 9, 40% performance drop), so we have to selectively disable
11481148
* it.
11491149
*/
1150-
#define DONT_SLP_VECTORIZE __attribute__((optimize ("no-tree-slp-vectorize")))
1150+
#define DONT_SLP_VECTORIZE __attribute__((optimize ("no-tree-slp-vectorize", "no-omit-frame-pointer")))
11511151
#else
11521152
#define DONT_SLP_VECTORIZE
11531153
#endif

0 commit comments

Comments
 (0)