aboutsummaryrefslogtreecommitdiff
path: root/clang/test/Coverage/cxx-language-features.inc
AgeCommit message (Collapse)AuthorFilesLines
2017-01-03Handle StaticAssertDecl in DeclContextPrinterAlex Lorenz1-0/+2
This commit fixes a crash that occurs when -print-decl-contexts AST consumer tries to print an unhandled declaration. rdar://19467234 Differential Revision: https://reviews.llvm.org/D26964 llvm-svn: 290887
2017-01-03Handle VarTemplateDecl in DeclContextPrinterAlex Lorenz1-0/+3
This commit fixes a crash that occurs when -print-decl-contexts AST consumer tries to print an unhandled declaration. rdar://19467234 Differential Revision: https://reviews.llvm.org/D26964 llvm-svn: 290886
2017-01-03Handle AccessSpecDecl in DeclContextPrinterAlex Lorenz1-0/+5
This commit fixes a crash that occurs when -print-decl-contexts AST consumer tries to print an unhandled declaration. rdar://19467234 Differential Revision: https://reviews.llvm.org/D26964 llvm-svn: 290885
2017-01-03Handle ClassTemplateSpecializationDecl in DeclContextPrinterAlex Lorenz1-0/+11
This commit fixes a crash that occurs when -print-decl-contexts AST consumer tries to print an unhandled declaration. rdar://19467234 Differential Revision: https://reviews.llvm.org/D26964 llvm-svn: 290884
2017-01-03Handle EmptyDecl in DeclContextPrinterAlex Lorenz1-0/+3
This commit fixes a crash that occurs when -print-decl-contexts AST consumer tries to print an unhandled declaration. rdar://19467234 Differential Revision: https://reviews.llvm.org/D26964 llvm-svn: 290882
2017-01-03Handle UsingDecl and UsingShadowDecl in DeclContextPrinterAlex Lorenz1-0/+8
This commit fixes a crash that occurs when -print-decl-contexts AST consumer tries to print an unhandled declaration. rdar://19467234 Differential Revision: https://reviews.llvm.org/D26964 llvm-svn: 290881
2017-01-03Handle FriendDecl in DeclContextPrinterAlex Lorenz1-0/+8
This commit fixes a crash that occurs when -print-decl-contexts AST consumer tries to print an unhandled declaration. rdar://19467234 Differential Revision: https://reviews.llvm.org/D26964 llvm-svn: 290880
2010-12-15Sema: have BuildExpressionFromIntegralTemplateArgument produce well-formed ↵Peter Collingbourne1-0/+6
IntegerLiterals BuildExpressionFromIntegralTemplateArgument can produce malformed IntegerLiterals with an EnumType if the template parameter type is an EnumType. This breaks the AST printer which expects all IntegerLiterals to have a plain integer type. Instead, give the IntegerLiteral the enum's promotion type and wrap in an implicit cast to the EnumType. llvm-svn: 121862
2009-05-30AST printing for C++ base classesDouglas Gregor1-0/+7
llvm-svn: 72617
2009-05-30Pretty printing and improved representation for namespace alias declarationsDouglas Gregor1-0/+2
llvm-svn: 72616
2009-05-30Printing for using directives, e.g.,Douglas Gregor1-0/+12
using namespace std::debug; Extended UsingDirectiveDecl to store the nested-name-specifier that precedes the nominated namespace. llvm-svn: 72614