[LLVMCore] fix description for OverflowingBinaryOperator; NFC

llvm-svn: 315726
This commit is contained in:
Sanjay Patel 2017-10-13 18:25:23 +00:00
parent 4f5c8c29ac
commit bdaa2f9d05
1 changed files with 3 additions and 3 deletions

View File

@ -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 {