Home | History | Annotate | Download | only in AsmParser

Lines Matching refs:NSW

2190     bool NSW = false;
2201 NSW = true;
2221 if (NSW)
2222 return Error(ModifierLoc, "nsw only applies to integer operations");
2251 if (NSW) Flags |= OverflowingBinaryOperator::NoSignedWrap;
2899 bool NSW = EatIfPresent(lltok::kw_nsw);
2905 if (NSW) cast<BinaryOperator>(Inst)->setHasNoSignedWrap(true);