aprantl marked 5 inline comments as done.
aprantl added inline comments.
================
Comment at: lldb/source/Expression/DWARFExpression.cpp:2571
+ if (stack.size() < 1) {
+ if (error_ptr)
+ error_ptr->SetErrorString(
----------------
vsk wrote:
> JDevlieghere wrote:
> > aprantl wrote:
> > > JDevlieghere wrote:
> > > > Can we wrap this in a lambda?
> > > Which part specifically do you mean?
> > ```auto SetErrorString = [&](llvm::StringRef msg) { if (error_ptr)
> > error_ptr->SetErrorString(msg); })```
> >
> > We could deduplicate even more code by using a macro that also covers the
> > check around it and does the return, but I'm not sure if that's really
> > worth it.
> Oh, like LLDB_LOG? Seems like a nice idea. I think I need this for D67376, so
> I might do it if no one else has started already. It'd be great to use that
> here.
I'll leave this as an NFC refactoring for later since it will affect code
outside of this patch.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D67369/new/
https://reviews.llvm.org/D67369
_______________________________________________
lldb-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits