[Lldb-commits] [lldb] [lldb] Fix TLS support on Darwin platforms (PR #151601)
Med Ismail Bennani via lldb-commits
lldb-commits at lists.llvm.org
Mon Aug 4 11:04:27 PDT 2025
================
@@ -10,10 +10,12 @@ touch_shared();
// Create some TLS storage within the static executable.
__thread int var_static = 44;
+__thread int var_static2 = 22;
void *fn_static(void *param)
{
var_static *= 2;
+ var_static2 *= 3;
----------------
medismailben wrote:
indentation ?
https://github.com/llvm/llvm-project/pull/151601
More information about the lldb-commits
mailing list