projects
/
platform
/
upstream
/
llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
50206d8
)
[KnownBits] Fix copy pasto in comment. NFC
author
Craig Topper
<craig.topper@intel.com>
Mon, 7 Aug 2017 22:35:55 +0000
(22:35 +0000)
committer
Craig 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
patch
|
blob
|
history
diff --git
a/llvm/include/llvm/Support/KnownBits.h
b/llvm/include/llvm/Support/KnownBits.h
index
2c77d40
..
5a02168
100644
(file)
--- a/
llvm/include/llvm/Support/KnownBits.h
+++ b/
llvm/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)) {}