mirror of
https://github.com/python/cpython.git
synced 2025-11-02 11:08:57 +00:00
Don't inline Py_ADDRESS_IN_RANGE with gcc 4+ either.
Will backport.
This commit is contained in:
parent
e7e4e2dfab
commit
ab77227470
1 changed files with 2 additions and 1 deletions
|
|
@ -691,7 +691,8 @@ extremely desirable that it be this fast.
|
||||||
|
|
||||||
#undef Py_ADDRESS_IN_RANGE
|
#undef Py_ADDRESS_IN_RANGE
|
||||||
|
|
||||||
#if defined(__GNUC__) && (__GNUC__ == 3) && (__GNUC_MINOR__ >= 1)
|
#if defined(__GNUC__) && ((__GNUC__ == 3) && (__GNUC_MINOR__ >= 1) || \
|
||||||
|
(__GNUC__ >= 4))
|
||||||
#define Py_NO_INLINE __attribute__((__noinline__))
|
#define Py_NO_INLINE __attribute__((__noinline__))
|
||||||
#else
|
#else
|
||||||
#define Py_NO_INLINE
|
#define Py_NO_INLINE
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue