From 7028cedafe01f18a71acfd34031820f7ad684350 Mon Sep 17 00:00:00 2001 From: Roman Lebedev Date: Thu, 21 Mar 2019 15:50:54 +0000 Subject: [PATCH] [AST] OMPStructuredBlockTest: two matchers were promoted into ASTMatchers.h llvm-svn: 356679 --- clang/unittests/AST/OMPStructuredBlockTest.cpp | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/clang/unittests/AST/OMPStructuredBlockTest.cpp b/clang/unittests/AST/OMPStructuredBlockTest.cpp index 7b2028b07c05..623bed388c02 100644 --- a/clang/unittests/AST/OMPStructuredBlockTest.cpp +++ b/clang/unittests/AST/OMPStructuredBlockTest.cpp @@ -14,6 +14,7 @@ #include "clang/AST/ASTContext.h" #include "clang/AST/StmtOpenMP.h" #include "clang/ASTMatchers/ASTMatchFinder.h" +#include "clang/ASTMatchers/ASTMatchers.h" #include "clang/Tooling/Tooling.h" #include "llvm/ADT/SmallString.h" #include "gmock/gmock.h" @@ -25,8 +26,6 @@ using namespace tooling; namespace { -AST_MATCHER(Stmt, isOMPStructuredBlock) { return Node.isOMPStructuredBlock(); } - const ast_matchers::internal::VariadicDynCastAllOfMatcher< OMPExecutableDirective, OMPTargetDirective> ompTargetDirective; @@ -37,10 +36,6 @@ StatementMatcher OMPInnermostStructuredBlockMatcher() { .bind("id"); } -AST_MATCHER(OMPExecutableDirective, isStandaloneDirective) { - return Node.isStandaloneDirective(); -} - StatementMatcher OMPStandaloneDirectiveMatcher() { return stmt(ompExecutableDirective(isStandaloneDirective())).bind("id"); }