[PATCH] D53530: Fix (and improve) the support for C99 variable length array types
Jan Kratochvil via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Mon Dec 24 16:49:02 PST 2018
jankratochvil added inline comments.
================
Comment at: lldb/trunk/source/Plugins/SymbolFile/DWARF/DWARFASTParserClang.cpp:3476
+ if (DWARFDIE var_die = die.GetReferencedDIE(DW_AT_count)) {
+ if (var_die.Tag() == DW_TAG_variable)
+ if (exe_ctx) {
----------------
Here it could accidentally follow a number as DIE reference, addressed by: D56068
Repository:
rL LLVM
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D53530/new/
https://reviews.llvm.org/D53530
More information about the llvm-commits
mailing list