[llvm] r315726 - [LLVMCore] fix description for OverflowingBinaryOperator; NFC
Sanjay Patel via llvm-commits
llvm-commits at lists.llvm.org
Fri Oct 13 11:25:23 PDT 2017
Author: spatel
Date: Fri Oct 13 11:25:23 2017
New Revision: 315726
URL: http://llvm.org/viewvc/llvm-project?rev=315726&view=rev
Log:
[LLVMCore] fix description for OverflowingBinaryOperator; NFC
Modified:
llvm/trunk/include/llvm/IR/Operator.h
Modified: llvm/trunk/include/llvm/IR/Operator.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/IR/Operator.h?rev=315726&r1=315725&r2=315726&view=diff
==============================================================================
--- llvm/trunk/include/llvm/IR/Operator.h (original)
+++ llvm/trunk/include/llvm/IR/Operator.h Fri Oct 13 11:25:23 2017
@@ -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 {
More information about the llvm-commits
mailing list