[Lldb-commits] [lldb] [lldb] Move GetVTableInfo to C++ language runtime (PR #207010)

Michael Buch via lldb-commits lldb-commits at lists.llvm.org
Fri Jul 24 01:22:50 PDT 2026


================
@@ -524,8 +524,16 @@ bool CPPLanguageRuntime::GetDynamicTypeAndAddress(
   if (!CouldHaveDynamicValue(in_value))
     return false;
 
+  llvm::Expected<VTableInfoEntry> entry =
+      GetVTableInfoEntry(in_value, /*check_type=*/false);
+  if (!entry) {
+    llvm::consumeError(entry.takeError());
----------------
Michael137 wrote:

Dropping the error here seems suspicious. But that' not relevant to this PR

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


More information about the lldb-commits mailing list