From: Craig Topper Date: Mon, 7 Aug 2017 22:35:55 +0000 (+0000) Subject: [KnownBits] Fix copy pasto in comment. NFC X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7f0f9c853166b7f0bfc7c8aabe3c46530c8ba288;p=llvm [KnownBits] Fix copy pasto in comment. NFC git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@310320 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Support/KnownBits.h b/include/llvm/Support/KnownBits.h index 2c77d40559b..5a02168794b 100644 --- a/include/llvm/Support/KnownBits.h +++ b/include/llvm/Support/KnownBits.h @@ -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)) {}