[Lldb-commits] [PATCH] D119178: Add support for generating debug-info for structured bindings of structs and arrays
Adrian Prantl via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Tue Feb 8 16:37:01 PST 2022
aprantl added inline comments.
================
Comment at: clang/lib/CodeGen/CGDebugInfo.cpp:4647
+ const bool UsePointerValue) {
+ assert(CGM.getCodeGenOpts().hasReducedDebugInfo());
+ assert(!LexicalBlockStack.empty() && "Region stack mismatch, stack empty!");
----------------
do you need a
```
if (DebugKind > codegenoptions::LimitedDebugInfo)
return
```
here?
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D119178/new/
https://reviews.llvm.org/D119178
More information about the lldb-commits
mailing list