[llvm] r357014 - [ConstantRange] Fix outdated comment; NFC

Nikita Popov via llvm-commits llvm-commits at lists.llvm.org
Tue Mar 26 11:05:53 PDT 2019


Author: nikic
Date: Tue Mar 26 11:05:53 2019
New Revision: 357014

URL: http://llvm.org/viewvc/llvm-project?rev=357014&view=rev
Log:
[ConstantRange] Fix outdated comment; NFC

Full/empty is required now, so there is no default.

Modified:
    llvm/trunk/include/llvm/IR/ConstantRange.h

Modified: llvm/trunk/include/llvm/IR/ConstantRange.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/IR/ConstantRange.h?rev=357014&r1=357013&r2=357014&view=diff
==============================================================================
--- llvm/trunk/include/llvm/IR/ConstantRange.h (original)
+++ llvm/trunk/include/llvm/IR/ConstantRange.h Tue Mar 26 11:05:53 2019
@@ -58,7 +58,7 @@ class LLVM_NODISCARD ConstantRange {
   }
 
 public:
-  /// Initialize a full (the default) or empty set for the specified bit width.
+  /// Initialize a full or empty set for the specified bit width.
   explicit ConstantRange(uint32_t BitWidth, bool isFullSet);
 
   /// Initialize a range to hold the single specified value.




More information about the llvm-commits mailing list