[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)
llvm-svn: 310320

llvm/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)) {}