Home | History | Annotate | Download | only in InstCombine

Lines Matching defs:EltSize

916       uint64_t EltSize = DL.getTypeAllocSize(AT->getElementType());
917 assert(EltSize && "Cannot index into a zero-sized array");
918 NewIndices.push_back(ConstantInt::get(IntPtrTy,Offset/EltSize));
919 Offset %= EltSize;