diff options
-rw-r--r-- | llvm/include/llvm/IR/Operator.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/include/llvm/IR/Operator.h b/llvm/include/llvm/IR/Operator.h index 54e1165a111..ae9255174a3 100644 --- a/llvm/include/llvm/IR/Operator.h +++ b/llvm/include/llvm/IR/Operator.h @@ -61,9 +61,9 @@ public: } }; -/// Utility class for integer arithmetic operators which may exhibit overflow - -/// Add, Sub, and Mul. It does not include SDiv, despite that operator having -/// the potential for overflow. +/// Utility class for integer operators which may exhibit overflow - Add, Sub, +/// Mul, and Shl. It does not include SDiv, despite that operator having the +/// potential for overflow. class OverflowingBinaryOperator : public Operator { public: enum { |