From 0003c2dc1d4cf5b122e73e83177fd274fa9a9913 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Batuhan=20Ta=C5=9Fkaya?= Date: Sun, 29 Mar 2020 18:52:32 +0300 Subject: bpo-40096: Support __attribute__((__noreturn__)) on xlc (GH-19204) --- Include/pyport.h | 1 + 1 file changed, 1 insertion(+) diff --git a/Include/pyport.h b/Include/pyport.h index 64c73f0..72e74e0 100644 --- a/Include/pyport.h +++ b/Include/pyport.h @@ -832,6 +832,7 @@ extern _invalid_parameter_handler _Py_silent_invalid_parameter_handler; PyAPI_FUNC(void) _Py_NO_RETURN PyThread_exit_thread(void); */ #if defined(__clang__) || \ + defined(__xlc__) || \ (defined(__GNUC__) && \ ((__GNUC__ >= 3) || \ (__GNUC__ == 2) && (__GNUC_MINOR__ >= 5))) -- cgit v0.12