Home | History | Annotate | Download | only in CodeGen

Lines Matching defs:GEP

1582   // We might be deleting a pointer to array.  If so, GEP down to the
1588 SmallVector<llvm::Value*,8> GEP;
1590 GEP.push_back(Zero); // point at the outermost array
1598 // 2. GEP to the first element of the array.
1599 GEP.push_back(Zero);
1602 Ptr = Builder.CreateInBoundsGEP(Ptr, GEP, "del.first");