[OPENMP] Renamed 'DataRecursiveASTVisitor' to just 'RecursiveASTVisitor' for 'reduction' clause and small reformatting after Alp Toker's review.

llvm-svn: 211088
This commit is contained in:
Alexey Bataev 2014-06-17 02:32:07 +00:00
parent 57ffdb07fd
commit 560470c1ed
2 changed files with 11 additions and 11 deletions

View File

@ -2392,8 +2392,8 @@ bool RecursiveASTVisitor<Derived>::VisitOMPCopyinClause(OMPCopyinClause *C) {
} }
template <typename Derived> template <typename Derived>
bool DataRecursiveASTVisitor<Derived>::VisitOMPReductionClause( bool
OMPReductionClause *C) { RecursiveASTVisitor<Derived>::VisitOMPReductionClause(OMPReductionClause *C) {
TRY_TO(TraverseNestedNameSpecifierLoc(C->getQualifierLoc())); TRY_TO(TraverseNestedNameSpecifierLoc(C->getQualifierLoc()));
TRY_TO(TraverseDeclarationNameInfo(C->getNameInfo())); TRY_TO(TraverseDeclarationNameInfo(C->getNameInfo()));
VisitOMPClauseList(C); VisitOMPClauseList(C);

View File

@ -2392,15 +2392,6 @@ bool RecursiveASTVisitor<Derived>::VisitOMPSharedClause(OMPSharedClause *C) {
return true; return true;
} }
template <typename Derived>
bool RecursiveASTVisitor<Derived>::VisitOMPReductionClause(
OMPReductionClause *C) {
TRY_TO(TraverseNestedNameSpecifierLoc(C->getQualifierLoc()));
TRY_TO(TraverseDeclarationNameInfo(C->getNameInfo()));
VisitOMPClauseList(C);
return true;
}
template<typename Derived> template<typename Derived>
bool RecursiveASTVisitor<Derived>::VisitOMPLinearClause(OMPLinearClause *C) { bool RecursiveASTVisitor<Derived>::VisitOMPLinearClause(OMPLinearClause *C) {
VisitOMPClauseList(C); VisitOMPClauseList(C);
@ -2421,6 +2412,15 @@ bool RecursiveASTVisitor<Derived>::VisitOMPCopyinClause(OMPCopyinClause *C) {
return true; return true;
} }
template <typename Derived>
bool
RecursiveASTVisitor<Derived>::VisitOMPReductionClause(OMPReductionClause *C) {
TRY_TO(TraverseNestedNameSpecifierLoc(C->getQualifierLoc()));
TRY_TO(TraverseDeclarationNameInfo(C->getNameInfo()));
VisitOMPClauseList(C);
return true;
}
// FIXME: look at the following tricky-seeming exprs to see if we // FIXME: look at the following tricky-seeming exprs to see if we
// need to recurse on anything. These are ones that have methods // need to recurse on anything. These are ones that have methods
// returning decls or qualtypes or nestednamespecifier -- though I'm // returning decls or qualtypes or nestednamespecifier -- though I'm