Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSema.cpp2165 if (FunctionScopes.empty() && CachedFunctionScope) { in PushFunctionScope()
2167 CachedFunctionScope->Clear(); in PushFunctionScope()
2168 FunctionScopes.push_back(CachedFunctionScope.release()); in PushFunctionScope()
2303 if (Scope->isPlainFunction() && !Self->CachedFunctionScope) in operator ()()
2304 Self->CachedFunctionScope.reset(Scope); in operator ()()
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h936 std::unique_ptr<sema::FunctionScopeInfo> CachedFunctionScope; variable