From: Nikita Popov Date: Tue, 26 Mar 2019 18:05:53 +0000 (+0000) Subject: [ConstantRange] Fix outdated comment; NFC X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=cf76d44411739c0b95349fba49ec3e732f958ab0;p=llvm [ConstantRange] Fix outdated comment; NFC Full/empty is required now, so there is no default. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@357014 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/IR/ConstantRange.h b/include/llvm/IR/ConstantRange.h index 2d59b948529..11481a88fbf 100644 --- a/include/llvm/IR/ConstantRange.h +++ b/include/llvm/IR/ConstantRange.h @@ -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.