reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/Transforms/InstCombine/InstructionCombining.cpp
 2162         ((GEPEltType->isArrayTy() && SrcEltType->isVectorTy() &&
 2163           areMatchingArrayAndVecTypes(GEPEltType, SrcEltType)) ||
 2164          (GEPEltType->isVectorTy() && SrcEltType->isArrayTy() &&
 2165           areMatchingArrayAndVecTypes(SrcEltType, GEPEltType)))) {
 2173               ? Builder.CreateInBoundsGEP(SrcEltType, SrcOp, {Ops[1], Ops[2]})
 2174               : Builder.CreateGEP(SrcEltType, SrcOp, {Ops[1], Ops[2]});
 2221                 ? Builder.CreateInBoundsGEP(SrcEltType, SrcOp, NewIndices)
 2222                 : Builder.CreateGEP(SrcEltType, SrcOp, NewIndices);