From 7f0f9c853166b7f0bfc7c8aabe3c46530c8ba288 Mon Sep 17 00:00:00 2001 From: Craig Topper Date: Mon, 7 Aug 2017 22:35:55 +0000 Subject: [PATCH] [KnownBits] Fix copy pasto in comment. NFC git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@310320 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Support/KnownBits.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)) {} -- 2.50.1