summaryrefslogtreecommitdiff
path: root/Include
diff options
context:
space:
mode:
authorAlexey Izbyshev <izbyshev@ispras.ru>2018-11-03 04:30:11 +0300
committerMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2018-11-02 18:30:11 -0700
commita9122d183b1fbc4484d72aec69fc0979c7fd91f2 (patch)
tree00d051bf88180fbd5db014edfd2e824c8415bedf /Include
parent08026b103ea8f4c9f2b5045ef7806dd8b760da2b (diff)
downloadcpython-git-a9122d183b1fbc4484d72aec69fc0979c7fd91f2.tar.gz
[3.7] bpo-35147: Fix _Py_NO_RETURN for GCC (GH-10300) (GH-10301)
Use `__GNUC__` instead of non-existing `__GNUC_MAJOR__`. (cherry picked from commit e2ed5adcb5db2d70cfa72da1ba8446f7aa9e05cd) https://bugs.python.org/issue35147
Diffstat (limited to 'Include')
-rw-r--r--Include/pyerrors.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/Include/pyerrors.h b/Include/pyerrors.h
index f289471be2..f49d4e8bd0 100644
--- a/Include/pyerrors.h
+++ b/Include/pyerrors.h
@@ -94,9 +94,9 @@ PyAPI_FUNC(void) PyErr_SetExcInfo(PyObject *, PyObject *, PyObject *);
#endif
#if defined(__clang__) || \
- (defined(__GNUC_MAJOR__) && \
- ((__GNUC_MAJOR__ >= 3) || \
- (__GNUC_MAJOR__ == 2) && (__GNUC_MINOR__ >= 5)))
+ (defined(__GNUC__) && \
+ ((__GNUC__ >= 3) || \
+ (__GNUC__ == 2) && (__GNUC_MINOR__ >= 5)))
#define _Py_NO_RETURN __attribute__((__noreturn__))
#else
#define _Py_NO_RETURN