diff options
author | Nadav Rotem <nrotem@apple.com> | 2013-11-13 01:12:01 +0000 |
---|---|---|
committer | Nadav Rotem <nrotem@apple.com> | 2013-11-13 01:12:01 +0000 |
commit | ea186b951560a35d94316732b0691346f0a7a8d5 (patch) | |
tree | 79eff69c98bbac7627aee51924b54cdaf58c3df8 /llvm/lib | |
parent | ccad8c32e08857d0a3ac6a05a1d3c69e7dd25255 (diff) | |
download | bcm5719-llvm-ea186b951560a35d94316732b0691346f0a7a8d5.tar.gz bcm5719-llvm-ea186b951560a35d94316732b0691346f0a7a8d5.zip |
Update the docs to match the function name.
llvm-svn: 194537
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/Transforms/InstCombine/InstCombineAndOrXor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/InstCombine/InstCombineAndOrXor.cpp b/llvm/lib/Transforms/InstCombine/InstCombineAndOrXor.cpp index 9603f220781..88bb69beef0 100644 --- a/llvm/lib/Transforms/InstCombine/InstCombineAndOrXor.cpp +++ b/llvm/lib/Transforms/InstCombine/InstCombineAndOrXor.cpp @@ -1543,7 +1543,7 @@ static Instruction *MatchSelectFromAndOr(Value *A, Value *B, return 0; } -/// IsSingleBitValue - Returns true for "one-hot" values (values where at most +/// IsOneHotValue - Returns true for "one-hot" values (values where at most /// one bit can be set). static bool IsOneHotValue(Value *V) { // Match 1<<K. |