]> granicus.if.org Git - clang/commitdiff
[AST] OMPStructuredBlockTest: two matchers were promoted into ASTMatchers.h
authorRoman Lebedev <lebedev.ri@gmail.com>
Thu, 21 Mar 2019 15:50:54 +0000 (15:50 +0000)
committerRoman Lebedev <lebedev.ri@gmail.com>
Thu, 21 Mar 2019 15:50:54 +0000 (15:50 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@356679 91177308-0d34-0410-b5e6-96231b3b80d8

unittests/AST/OMPStructuredBlockTest.cpp

index 7b2028b07c058551641456065f97070d75d7d5ac..623bed388c0246b55543b03f74239e375a8ed620 100644 (file)
@@ -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");
 }