Home
last modified time | relevance | path

Searched refs:CurE (Results 1 – 1 of 1) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
HDSemaOpenMP.cpp15272 if (auto *CurE = dyn_cast<DeclRefExpr>(E)) { in checkMapClauseExpressionBase() local
15273 if (!isa<VarDecl>(CurE->getDecl())) in checkMapClauseExpressionBase()
15276 RelevantExpr = CurE; in checkMapClauseExpressionBase()
15284 CurComponents.emplace_back(CurE, CurE->getDecl()); in checkMapClauseExpressionBase()
15285 } else if (auto *CurE = dyn_cast<MemberExpr>(E)) { in checkMapClauseExpressionBase() local
15286 Expr *BaseE = CurE->getBase()->IgnoreParenImpCasts(); in checkMapClauseExpressionBase()
15290 RelevantExpr = CurE; in checkMapClauseExpressionBase()
15294 if (!isa<FieldDecl>(CurE->getMemberDecl())) { in checkMapClauseExpressionBase()
15297 << CurE->getSourceRange(); in checkMapClauseExpressionBase()
15305 auto *FD = cast<FieldDecl>(CurE->getMemberDecl()); in checkMapClauseExpressionBase()
[all …]