forked from OSchip/llvm-project
[LLVMCore] fix description for OverflowingBinaryOperator; NFC
llvm-svn: 315726
This commit is contained in:
parent
4f5c8c29ac
commit
bdaa2f9d05
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue