Lines Matching defs:NW
49 GEPNoWrapFlags NW = GEP->getNoWrapFlags();
50 if (NW.isInBounds() && !O.shouldKeep())
51 NW = NW.withoutInBounds();
52 if (NW.hasNoUnsignedSignedWrap() && !O.shouldKeep())
53 NW = NW.withoutNoUnsignedSignedWrap();
54 if (NW.hasNoUnsignedWrap() && !O.shouldKeep())
55 NW = NW.withoutNoUnsignedWrap();
56 GEP->setNoWrapFlags(NW);