mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00
Issue #28152: Fix -Wunreachable-code warnings on Clang
Don't declare dead code when the code is declared with Clang.
This commit is contained in:
parent
7bfb42d5b7
commit
9a2329f9e1
2 changed files with 14 additions and 0 deletions
|
@ -980,12 +980,21 @@ faulthandler_sigsegv(PyObject *self, PyObject *args)
|
|||
static void
|
||||
faulthandler_fatal_error_thread(void *plock)
|
||||
{
|
||||
#ifndef __clang__
|
||||
PyThread_type_lock *lock = (PyThread_type_lock *)plock;
|
||||
#endif
|
||||
|
||||
Py_FatalError("in new thread");
|
||||
|
||||
#ifndef __clang__
|
||||
/* Issue #28152: Py_FatalError() is declared with
|
||||
__attribute__((__noreturn__)). GCC emits a warning without
|
||||
"PyThread_release_lock()" (compiler bug?), but Clang is smarter and
|
||||
emits a warning on the return. */
|
||||
|
||||
/* notify the caller that we are done */
|
||||
PyThread_release_lock(lock);
|
||||
#endif
|
||||
}
|
||||
|
||||
static PyObject *
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue