labath wrote:

Btw, I've recently learned that synthetic child providers don't have to provide 
just children. They can also provide "values" of the object (`get_value` in 
python, I don't know how it's surfaced in c++). std::atomic would be a prime 
candidate for that.. just in case you're interested :)


I think it would turn
```
(std::atomic<int>) i = {
  Value = 47
}
```
into
```
(std::atomic<int>) i = 47
```

https://github.com/llvm/llvm-project/pull/146843
_______________________________________________
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to