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 | 0d833348c2dea181e08d3ece8da18079653f96ee (patch) | |
tree | 2a2ab97f16e33b50b8223d379ead0faa5ec4eb2c | |
parent | 20d7ed198978f871e91fde66e3b9a4a73a7c5396 (diff) | |
download | external_llvm-0d833348c2dea181e08d3ece8da18079653f96ee.zip external_llvm-0d833348c2dea181e08d3ece8da18079653f96ee.tar.gz external_llvm-0d833348c2dea181e08d3ece8da18079653f96ee.tar.bz2 |
Update the docs to match the function name.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@194537 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Transforms/InstCombine/InstCombineAndOrXor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Transforms/InstCombine/InstCombineAndOrXor.cpp b/lib/Transforms/InstCombine/InstCombineAndOrXor.cpp index 9603f22..88bb69b 100644 --- a/lib/Transforms/InstCombine/InstCombineAndOrXor.cpp +++ b/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. |