Home
last modified time | relevance | path

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

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
DFunctionComparator.cpp445 StructType *STyL = cast<StructType>(TyL); in cmpTypes() local
447 if (STyL->getNumElements() != STyR->getNumElements()) in cmpTypes()
448 return cmpNumbers(STyL->getNumElements(), STyR->getNumElements()); in cmpTypes()
450 if (STyL->isPacked() != STyR->isPacked()) in cmpTypes()
451 return cmpNumbers(STyL->isPacked(), STyR->isPacked()); in cmpTypes()
453 for (unsigned i = 0, e = STyL->getNumElements(); i != e; ++i) { in cmpTypes()
454 if (int Res = cmpTypes(STyL->getElementType(i), STyR->getElementType(i))) in cmpTypes()
481 auto *STyL = cast<SequentialType>(TyL); in cmpTypes() local
483 if (STyL->getNumElements() != STyR->getNumElements()) in cmpTypes()
484 return cmpNumbers(STyL->getNumElements(), STyR->getNumElements()); in cmpTypes()
[all …]