[Lldb-commits] [lldb] a37c69e - [lldb] Remove pre GCC 4.8 workaround (#73981)
via lldb-commits
lldb-commits at lists.llvm.org
Thu Nov 30 20:14:51 PST 2023
Author: Brad Smith
Date: 2023-11-30T23:14:46-05:00
New Revision: a37c69ec315b9526a3532022be3ebe1af9ca356a
URL: https://github.com/llvm/llvm-project/commit/a37c69ec315b9526a3532022be3ebe1af9ca356a
DIFF: https://github.com/llvm/llvm-project/commit/a37c69ec315b9526a3532022be3ebe1af9ca356a.diff
LOG: [lldb] Remove pre GCC 4.8 workaround (#73981)
The minimum GCC version was bumped up from 4.8 to 5.1 and then even newer
awhile ago so garbage collect the pre 4.8 workaround.
https://reviews.llvm.org/D66188
Added:
Modified:
lldb/source/Host/common/Host.cpp
Removed:
################################################################################
diff --git a/lldb/source/Host/common/Host.cpp b/lldb/source/Host/common/Host.cpp
index 49eac0b0fa7b0c6..8314d3581f6a47f 100644
--- a/lldb/source/Host/common/Host.cpp
+++ b/lldb/source/Host/common/Host.cpp
@@ -133,11 +133,7 @@ class ScopedPThreadCancelDisabler {
#endif // __linux__
#ifdef __linux__
-#if defined(__GNUC__) && (__GNUC__ < 4 || (__GNUC__ == 4 && __GNUC_MINOR__ < 8))
-static __thread volatile sig_atomic_t g_usr1_called;
-#else
static thread_local volatile sig_atomic_t g_usr1_called;
-#endif
static void SigUsr1Handler(int) { g_usr1_called = 1; }
#endif // __linux__
More information about the lldb-commits
mailing list