diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/VMCore/Constants.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/VMCore/Constants.cpp b/lib/VMCore/Constants.cpp index d71dc2c..0bff578 100644 --- a/lib/VMCore/Constants.cpp +++ b/lib/VMCore/Constants.cpp @@ -605,6 +605,15 @@ Constant* ConstantVector::get(Constant* const* Vals, unsigned NumVals) { return get(std::vector<Constant*>(Vals, Vals+NumVals)); } +Constant* ConstantExpr::getNSWAdd(Constant* C1, Constant* C2) { + Constant *C = getAdd(C1, C2); + // Set nsw attribute, assuming constant folding didn't eliminate the + // Add. + if (AddOperator *Add = dyn_cast<AddOperator>(C)) + Add->setHasNoSignedOverflow(true); + return C; +} + Constant* ConstantExpr::getExactSDiv(Constant* C1, Constant* C2) { Constant *C = getSDiv(C1, C2); // Set exact attribute, assuming constant folding didn't eliminate the |