diff options
| author | Sanjay Patel <spatel@rotateright.com> | 2017-10-13 18:25:23 +0000 |
|---|---|---|
| committer | Sanjay Patel <spatel@rotateright.com> | 2017-10-13 18:25:23 +0000 |
| commit | bdaa2f9d0591e75062ce84409d75c0f95e12a108 (patch) | |
| tree | 9740544093580f65a5b548f838b8d64c2b81faa4 /llvm | |
| parent | 4f5c8c29ac38fc459d045cb9968a10764eba0a1e (diff) | |
| download | bcm5719-llvm-bdaa2f9d0591e75062ce84409d75c0f95e12a108.tar.gz bcm5719-llvm-bdaa2f9d0591e75062ce84409d75c0f95e12a108.zip | |
[LLVMCore] fix description for OverflowingBinaryOperator; NFC
llvm-svn: 315726
Diffstat (limited to 'llvm')
| -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 { |

