OSDN Git Service

[KnownBits] Fix copy pasto in comment. NFC
authorCraig Topper <craig.topper@intel.com>
Mon, 7 Aug 2017 22:35:55 +0000 (22:35 +0000)
committerCraig Topper <craig.topper@intel.com>
Mon, 7 Aug 2017 22:35:55 +0000 (22:35 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@310320 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Support/KnownBits.h

index 2c77d40..5a02168 100644 (file)
@@ -25,7 +25,7 @@ struct KnownBits {
   APInt One;
 
 private:
-  // Internal constructor for creating a ConstantRange from two APInts.
+  // Internal constructor for creating a KnownBits from two APInts.
   KnownBits(APInt Zero, APInt One)
       : Zero(std::move(Zero)), One(std::move(One)) {}