summaryrefslogtreecommitdiff
path: root/include/llvm/Support/MathExtras.h
diff options
context:
space:
mode:
authorOwen Anderson <resistor@mac.com>2007-03-02 05:03:07 +0000
committerOwen Anderson <resistor@mac.com>2007-03-02 05:03:07 +0000
commita505fb6d9f1684a56680635a38e45a9c14d910e6 (patch)
tree7e607f6d7910ecce127b8c739c8bf5e7df960a84 /include/llvm/Support/MathExtras.h
parentf09aef7698bbae79a67287a353c63c1ca31055b0 (diff)
downloadllvm-a505fb6d9f1684a56680635a38e45a9c14d910e6.tar.gz
llvm-a505fb6d9f1684a56680635a38e45a9c14d910e6.tar.bz2
llvm-a505fb6d9f1684a56680635a38e45a9c14d910e6.tar.xz
Fix a typo.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@34836 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Support/MathExtras.h')
-rw-r--r--include/llvm/Support/MathExtras.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Support/MathExtras.h b/include/llvm/Support/MathExtras.h
index cff7a10ab5..03b52b0678 100644
--- a/include/llvm/Support/MathExtras.h
+++ b/include/llvm/Support/MathExtras.h
@@ -225,7 +225,7 @@ inline unsigned CountTrailingZeros_64(uint64_t Value) {
47, 5, 32, 65, 38, 14, 22, 11, 58, 18, 53, 63, 9, 61, 27,
29, 50, 43, 46, 31, 37, 21, 57, 52, 8, 26, 49, 45, 36, 56,
7, 48, 35, 6, 34, 33, 0 };
- return Mod67Position[(-Value & Value) % 37];
+ return Mod67Position[(-Value & Value) % 67];
#endif
}