diff options
author | Stephen Kelly <steveire@gmail.com> | 2018-12-02 17:30:26 +0000 |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2018-12-02 17:30:26 +0000 |
commit | 98cd41f928c36c3b6fcbe245dd92bdecb8cf2800 (patch) | |
tree | 02f41d19a6b4863cfd8756892ded7291b8159e92 | |
parent | ff13c24cfe78f721119d8ffdacd87e8465a12f2e (diff) | |
download | bcm5719-llvm-98cd41f928c36c3b6fcbe245dd92bdecb8cf2800.tar.gz bcm5719-llvm-98cd41f928c36c3b6fcbe245dd92bdecb8cf2800.zip |
Remove unecessary methods
The base class calls VisitExpr
llvm-svn: 348099
-rw-r--r-- | clang/lib/AST/ASTDumper.cpp | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/clang/lib/AST/ASTDumper.cpp b/clang/lib/AST/ASTDumper.cpp index a385cf9b9a6..b1519fbc648 100644 --- a/clang/lib/AST/ASTDumper.cpp +++ b/clang/lib/AST/ASTDumper.cpp @@ -537,8 +537,6 @@ namespace { void VisitFloatingLiteral(const FloatingLiteral *Node); void VisitStringLiteral(const StringLiteral *Str); void VisitInitListExpr(const InitListExpr *ILE); - void VisitArrayInitLoopExpr(const ArrayInitLoopExpr *ILE); - void VisitArrayInitIndexExpr(const ArrayInitIndexExpr *ILE); void VisitUnaryOperator(const UnaryOperator *Node); void VisitUnaryExprOrTypeTraitExpr(const UnaryExprOrTypeTraitExpr *Node); void VisitMemberExpr(const MemberExpr *Node); @@ -2285,14 +2283,6 @@ void ASTDumper::VisitInitListExpr(const InitListExpr *ILE) { } } -void ASTDumper::VisitArrayInitLoopExpr(const ArrayInitLoopExpr *E) { - VisitExpr(E); -} - -void ASTDumper::VisitArrayInitIndexExpr(const ArrayInitIndexExpr *E) { - VisitExpr(E); -} - void ASTDumper::VisitUnaryOperator(const UnaryOperator *Node) { VisitExpr(Node); OS << " " << (Node->isPostfix() ? "postfix" : "prefix") |