================
@@ -183,6 +183,11 @@ SBModuleSpecList::SBModuleSpecList(const SBModuleSpecList
&rhs)
LLDB_INSTRUMENT_VA(this, rhs);
}
+SBModuleSpecList::SBModuleSpecList(lldb_private::ModuleSpecList &&module_spec)
+ : m_opaque_up(new ModuleSpecList(std::move(module_spec))) {
+ LLDB_INSTRUMENT_VA(this);
----------------
clayborg wrote:
Check if other APIs that construct from a lldb_private field actually
instrument. I don't know if we want to instrument this call if the only clients
are internal.
https://github.com/llvm/llvm-project/pull/144119
_______________________________________________
lldb-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits