diff options
Diffstat (limited to 'lldb/source/API/SBValue.cpp')
-rw-r--r-- | lldb/source/API/SBValue.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lldb/source/API/SBValue.cpp b/lldb/source/API/SBValue.cpp index a93cd8d5546..d08073306cc 100644 --- a/lldb/source/API/SBValue.cpp +++ b/lldb/source/API/SBValue.cpp @@ -528,6 +528,10 @@ SBValue::GetValueType () log->Printf ("SBValue(%p)::GetValueType () => eValueTypeConstResult", static_cast<void*>(value_sp.get())); break; + case eValueTypeVariableThreadLocal: + log->Printf("SBValue(%p)::GetValueType () => eValueTypeVariableThreadLocal", + static_cast<void *>(value_sp.get())); + break; } } return result; |