[PATCH] D74970: [OpenMP] Refactor the analysis in checkMapClauseBaseExpression using StmtVisitor class.
Chi Chun Chen via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Fri Feb 21 12:13:12 PST 2020
cchen marked 11 inline comments as done.
cchen added inline comments.
================
Comment at: clang/lib/Sema/SemaOpenMP.cpp:15450
}
+ bool VisitCXXThisExpr(CXXThisExpr *CTE) { return true; }
+ bool VisitStmt(Stmt *) {
----------------
ABataev wrote:
> Do you really need this function?
Removed the function.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D74970/new/
https://reviews.llvm.org/D74970
More information about the cfe-commits
mailing list