[Lldb-commits] [PATCH] D65414: Fix ClangASTContext::CreateParameterDeclaration to not call addDecl

Jim Ingham via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Mon Jul 29 16:01:58 PDT 2019


jingham added a comment.

It might be good to see if you can trigger the bug more directly (for instance by getting the SBType for the method and pulling out its arguments?)  The reason that a breakpoint triggers this at present is that lldb reads the debug info for the function to find the prologue extents so it can more accurately push the breakpoint past the prologue.  But that's not really desirable, it is a lot of work just for setting a breakpoint, and if I ever figure out how not to do that, I will.  In which case, this test will no longer test what you think it tests.


CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D65414/new/

https://reviews.llvm.org/D65414





More information about the lldb-commits mailing list