HomeSort by relevance Sort by last modified time
    Searched refs:LFn (Results 1 - 2 of 2) sorted by null

  /external/llvm/tools/llvm-diff/
llvm-diff.cpp 48 Function *LFn = L->getFunction(Name);
50 if (LFn && RFn)
51 Engine.diff(LFn, RFn);
52 else if (!LFn && !RFn)
54 else if (!LFn)
DifferenceEngine.cpp 656 Function *LFn = &*I;
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 54 milliseconds