Home
last modified time | relevance | path

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

/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Utils/
DFunctionComparator.cpp454 FunctionType *FTyR = cast<FunctionType>(TyR); in cmpTypes() local
455 if (FTyL->getNumParams() != FTyR->getNumParams()) in cmpTypes()
456 return cmpNumbers(FTyL->getNumParams(), FTyR->getNumParams()); in cmpTypes()
458 if (FTyL->isVarArg() != FTyR->isVarArg()) in cmpTypes()
459 return cmpNumbers(FTyL->isVarArg(), FTyR->isVarArg()); in cmpTypes()
461 if (int Res = cmpTypes(FTyL->getReturnType(), FTyR->getReturnType())) in cmpTypes()
465 if (int Res = cmpTypes(FTyL->getParamType(i), FTyR->getParamType(i))) in cmpTypes()
/external/llvm/lib/Transforms/IPO/
DMergeFunctions.cpp875 FunctionType *FTyR = cast<FunctionType>(TyR); in cmpTypes() local
876 if (FTyL->getNumParams() != FTyR->getNumParams()) in cmpTypes()
877 return cmpNumbers(FTyL->getNumParams(), FTyR->getNumParams()); in cmpTypes()
879 if (FTyL->isVarArg() != FTyR->isVarArg()) in cmpTypes()
880 return cmpNumbers(FTyL->isVarArg(), FTyR->isVarArg()); in cmpTypes()
882 if (int Res = cmpTypes(FTyL->getReturnType(), FTyR->getReturnType())) in cmpTypes()
886 if (int Res = cmpTypes(FTyL->getParamType(i), FTyR->getParamType(i))) in cmpTypes()