Searched refs:LFn (Results 1 - 2 of 2) sorted by relevance

/external/llvm/tools/llvm-diff/
H A Dllvm-diff.cpp48 Function *LFn = L->getFunction(Name); local
50 if (LFn && RFn)
51 Engine.diff(LFn, RFn);
52 else if (!LFn && !RFn)
54 else if (!LFn)
H A DDifferenceEngine.cpp656 Function *LFn = &*I; local
657 LNames.insert(LFn->getName());
659 if (Function *RFn = R->getFunction(LFn->getName()))
660 Queue.push_back(std::make_pair(LFn, RFn));
662 logf("function %l exists only in left module") << LFn;

Completed in 154 milliseconds