aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/ADT
diff options
context:
space:
mode:
authorBenjamin Kramer <benny.kra@googlemail.com>2012-03-02 19:19:34 +0000
committerBenjamin Kramer <benny.kra@googlemail.com>2012-03-02 19:19:34 +0000
commit171cda96c8fa7ea48f792b700847e750a2036f2f (patch)
treeaf860013ed6f313fcf7ad89e1af2ad1accac8905 /include/llvm/ADT
parented4cf997abe9db574728aa6c1b06a9887848e7f0 (diff)
downloadexternal_llvm-171cda96c8fa7ea48f792b700847e750a2036f2f.zip
external_llvm-171cda96c8fa7ea48f792b700847e750a2036f2f.tar.gz
external_llvm-171cda96c8fa7ea48f792b700847e750a2036f2f.tar.bz2
Fix indentation.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@151932 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/ADT')
-rw-r--r--include/llvm/ADT/Hashing.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/llvm/ADT/Hashing.h b/include/llvm/ADT/Hashing.h
index 120f9e5..c862d62 100644
--- a/include/llvm/ADT/Hashing.h
+++ b/include/llvm/ADT/Hashing.h
@@ -208,9 +208,9 @@ inline uint64_t hash_4to8_bytes(const char *s, size_t len, uint64_t seed) {
}
inline uint64_t hash_9to16_bytes(const char *s, size_t len, uint64_t seed) {
- uint64_t a = fetch64(s);
- uint64_t b = fetch64(s + len - 8);
- return hash_16_bytes(seed ^ a, rotate(b + len, len)) ^ b;
+ uint64_t a = fetch64(s);
+ uint64_t b = fetch64(s + len - 8);
+ return hash_16_bytes(seed ^ a, rotate(b + len, len)) ^ b;
}
inline uint64_t hash_17to32_bytes(const char *s, size_t len, uint64_t seed) {