[Lldb-commits] [lldb] [lldb] Add enum lookup to DIL (PR #192065)
Michael Buch via lldb-commits
lldb-commits at lists.llvm.org
Fri Apr 17 02:31:10 PDT 2026
================
@@ -380,6 +380,31 @@ lldb::ValueObjectSP LookupIdentifier(llvm::StringRef name_ref,
return nullptr;
}
+lldb::ValueObjectSP LookupEnumValue(llvm::StringRef name_ref,
+ std::shared_ptr<StackFrame> stack_frame) {
----------------
Michael137 wrote:
```suggestion
StackFrameSP stack_frame) {
```
(but probable can just be a `StackFrame &`, or even `const StackFrame &`?)
https://github.com/llvm/llvm-project/pull/192065
More information about the lldb-commits
mailing list