Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DFunctionComparator.cpp506 assert(LBA->getFunction() == FnL && RBA->getFunction() == FnR); in cmpConstants()
541 const DataLayout &DL = FnL->getDataLayout(); in cmpTypes()
822 const DataLayout &DL = FnL->getDataLayout(); in cmpGEPs()
871 if (L == FnL) { in cmpValues()
877 if (L == FnL) in cmpValues()
961 if (int Res = cmpAttrs(FnL->getAttributes(), FnR->getAttributes())) in compareSignature()
964 if (int Res = cmpNumbers(FnL->hasGC(), FnR->hasGC())) in compareSignature()
967 if (FnL->hasGC()) { in compareSignature()
968 if (int Res = cmpMem(FnL->getGC(), FnR->getGC())) in compareSignature()
972 if (int Res = cmpNumbers(FnL->hasSection(), FnR->hasSection())) in compareSignature()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/
H A DFunctionComparator.h98 : FnL(F1), FnR(F2), GlobalNumbers(GN) {} in FunctionComparator()
328 const Function *FnL, *FnR; variable