Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang-tools-extra/clang-tidy/readability/
H A DRedundantSmartptrGetCheck.cpp147 const auto *GetCall = Result.Nodes.getNodeAs<Expr>("redundant_get"); in check() local
148 if (GetCall->getBeginLoc().isMacroID() && IgnoreMacros) in check()
158 auto SR = GetCall->getSourceRange(); in check()
161 if (isa<CXXDependentScopeMemberExpr>(GetCall)) in check()
171 diag(GetCall->getBeginLoc(), "redundant get() call on smart pointer") in check()
/llvm-project-15.0.7/llvm/lib/Transforms/Scalar/
H A DMemCpyOptimizer.cpp763 auto GetCall = [&]() -> CallInst * { in processStore() local
776 std::min(SI->getAlign(), LI->getAlign()), GetCall); in processStore()