[Lldb-commits] [lldb] [LLDB] Add type casting to DIL, part 2 or 3 (PR #170332)
via lldb-commits
lldb-commits at lists.llvm.org
Wed Dec 10 22:21:18 PST 2025
================
@@ -21,6 +21,37 @@
namespace lldb_private::dil {
+lldb::ValueObjectSP
+GetDynamicOrSyntheticValue(lldb::ValueObjectSP in_valobj_sp,
+ lldb::DynamicValueType use_dynamic,
+ bool use_synthetic) {
+ if (!in_valobj_sp)
+ return in_valobj_sp;
----------------
cmtice wrote:
Done.
https://github.com/llvm/llvm-project/pull/170332
More information about the lldb-commits
mailing list