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

/macosx-10.9.5/llvmCore-3425.0.33/tools/llvm-diff/
H A Dllvm-diff.cpp50 Function *LFn = L->getFunction(Name); local
52 if (LFn && RFn)
53 Engine.diff(LFn, RFn);
54 else if (!LFn && !RFn)
56 else if (!LFn)
H A DDifferenceEngine.cpp660 Function *LFn = &*I; local
661 LNames.insert(LFn->getName());
663 if (Function *RFn = R->getFunction(LFn->getName()))
664 Queue.push_back(std::make_pair(LFn, RFn));
666 logf("function %l exists only in left module") << LFn;

Completed in 74 milliseconds