Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/tools/llvm-diff/
H A Dllvm-diff.cpp47 Function *LFn = L.getFunction(Name); in diffGlobal() local
49 if (LFn && RFn) in diffGlobal()
50 Engine.diff(LFn, RFn); in diffGlobal()
51 else if (!LFn && !RFn) in diffGlobal()
53 else if (!LFn) in diffGlobal()
/freebsd/contrib/llvm-project/llvm/tools/llvm-diff/lib/
H A DDifferenceEngine.cpp973 const Function *LFn = &*I; in diff() local
974 StringRef Name = LFn->getName(); in diff()
982 if (Function *RFn = R->getFunction(LFn->getName())) in diff()
983 Queue.push_back(std::make_pair(LFn, RFn)); in diff()
985 logf("function %l exists only in left module") << LFn; in diff()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaExpr.cpp12603 const FunctionType *LFn = LCanPointeeTy->getAs<FunctionType>(); in CheckCompareOperands() local
12605 bool LHSHasCFIUncheckedCallee = LFn && LFn->getCFIUncheckedCalleeAttr(); in CheckCompareOperands()