[llvm-commits] [llvm] r151932 - /llvm/trunk/include/llvm/ADT/Hashing.h

Benjamin Kramer benny.kra at googlemail.com
Fri Mar 2 11:19:34 PST 2012


Author: d0k
Date: Fri Mar  2 13:19:34 2012
New Revision: 151932

URL: http://llvm.org/viewvc/llvm-project?rev=151932&view=rev
Log:
Fix indentation.

Modified:
    llvm/trunk/include/llvm/ADT/Hashing.h

Modified: llvm/trunk/include/llvm/ADT/Hashing.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/ADT/Hashing.h?rev=151932&r1=151931&r2=151932&view=diff
==============================================================================
--- llvm/trunk/include/llvm/ADT/Hashing.h (original)
+++ llvm/trunk/include/llvm/ADT/Hashing.h Fri Mar  2 13:19:34 2012
@@ -208,9 +208,9 @@
 }
 
 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) {





More information about the llvm-commits mailing list