Lines Matching defs:ZExt
177 ZExtInst *ZExt;
182 ZExt(nullptr), SExt(nullptr) {}
193 if (auto *ZExt = dyn_cast<ZExtInst>(V)) {
194 V = ZExt->getOperand(0);
195 Info.ZExt = ZExt;
234 if (Info.ZExt) {
235 if (Info.ZExt->getType() == V->getType())
237 return Builder.CreateZExt(V, Info.ZExt->getType());
304 Instruction *ToRemove[] = {ICmp, Info.ZExt, Info.SExt, MinMax};