[Lldb-commits] [lldb] [lldb-vscode] Show addresses next to dereferenced summaries when using enableAutoVariableSummaries (PR #66551)

Greg Clayton via lldb-commits lldb-commits at lists.llvm.org
Mon Sep 18 12:01:01 PDT 2023


https://github.com/clayborg requested changes to this pull request.

This shouldn't be type specific. Any SBValue that reports a value when you call:
```
const char *SBValue::GetValue();
```
Should always show the value. In this case, a pointer always has a value to show. So it shouldn't matter that this is a pointer, it should be just "any SBValue that has a value should display the value and if it doesn't have a summary and we auto generate one, then we can append the generated summary string". If you look at the normal code it does this for any SBValue.

https://github.com/llvm/llvm-project/pull/66551


More information about the lldb-commits mailing list