[Lldb-commits] [PATCH] D53436: [LLDB] - Implement the support for the .debug_loclists section.

Greg Clayton via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Mon Oct 22 10:54:29 PDT 2018


clayborg added a comment.

Just fix the assert to use lldbassert so we don't crash as mentioned in the inline comment and this is good to go.



================
Comment at: source/Expression/DWARFExpression.cpp:3070
       // Not supported entry type
+      assert(false && "Not supported location list type");
       return false;
----------------
use lldbassert so this doesn't crash a release debugger.


https://reviews.llvm.org/D53436





More information about the lldb-commits mailing list