diff options
Diffstat (limited to 'lldb/source/API/SBBlock.cpp')
-rw-r--r-- | lldb/source/API/SBBlock.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lldb/source/API/SBBlock.cpp b/lldb/source/API/SBBlock.cpp index f6231297277..03ee7343c9f 100644 --- a/lldb/source/API/SBBlock.cpp +++ b/lldb/source/API/SBBlock.cpp @@ -294,6 +294,7 @@ SBBlock::GetVariables (lldb::SBFrame& frame, { case eValueTypeVariableGlobal: case eValueTypeVariableStatic: + case eValueTypeVariableThreadLocal: add_variable = statics; break; @@ -356,6 +357,7 @@ SBBlock::GetVariables (lldb::SBTarget& target, { case eValueTypeVariableGlobal: case eValueTypeVariableStatic: + case eValueTypeVariableThreadLocal: add_variable = statics; break; |