[Lldb-commits] [PATCH] D67994: Modify lldb-test to print out ASTs from symbol file
Raphael Isemann via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Mon Oct 7 11:30:59 PDT 2019
teemperor added inline comments.
================
Comment at: source/Symbol/ClangASTContext.cpp:9195
+ GetAsEnumDecl(type->GetFullCompilerType()))
+ enum_decl->dump(s.AsRawOstream());
+ else {
----------------
shafik wrote:
> aprantl wrote:
> > is an EnumDecl not a TagDecl?
> I don't understand the comment, `TagDecl` is handled above.
I think Adrian's point is that EnumDecl is a subclass of TagDecl.
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D67994/new/
https://reviews.llvm.org/D67994
More information about the lldb-commits
mailing list