Lines Matching defs:ZExt
180 ZExtInst *ZExt;
185 ZExt(nullptr), SExt(nullptr) {}
196 if (auto *ZExt = dyn_cast<ZExtInst>(V)) {
197 V = ZExt->getOperand(0);
198 Info.ZExt = ZExt;
237 if (Info.ZExt) {
238 if (Info.ZExt->getType() == V->getType())
240 return Builder.CreateZExt(V, Info.ZExt->getType());
307 Instruction *ToRemove[] = {ICmp, Info.ZExt, Info.SExt, MinMax};