From 44b77357dab963fb02da1d81d41b893ee86f2d25 Mon Sep 17 00:00:00 2001 From: Sanjay Patel Date: Fri, 13 Oct 2017 18:25:23 +0000 Subject: [PATCH] [LLVMCore] fix description for OverflowingBinaryOperator; NFC git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@315726 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/IR/Operator.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/llvm/IR/Operator.h b/include/llvm/IR/Operator.h index 54e1165a111..ae9255174a3 100644 --- a/include/llvm/IR/Operator.h +++ b/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 { -- 2.40.0