aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Support/APInt.cpp
diff options
context:
space:
mode:
authorMike Stump <mrs@apple.com>2009-05-13 23:23:20 +0000
committerMike Stump <mrs@apple.com>2009-05-13 23:23:20 +0000
commit889285d4677e7cbe8940418fc4813e762d4c2cd9 (patch)
tree9707db37c01262c0b3a7402253c8df4ee01b3ffa /llvm/lib/Support/APInt.cpp
parent9e87721d47fdfb093050dc2318f3c9a956051299 (diff)
downloadllvm-889285d4677e7cbe8940418fc4813e762d4c2cd9.zip
llvm-889285d4677e7cbe8940418fc4813e762d4c2cd9.tar.gz
llvm-889285d4677e7cbe8940418fc4813e762d4c2cd9.tar.bz2
Fix whitespacing (space after switch).
llvm-svn: 71738
Diffstat (limited to 'llvm/lib/Support/APInt.cpp')
-rw-r--r--llvm/lib/Support/APInt.cpp11
1 files changed, 5 insertions, 6 deletions
diff --git a/llvm/lib/Support/APInt.cpp b/llvm/lib/Support/APInt.cpp
index e77fcdb..8b900fb 100644
--- a/llvm/lib/Support/APInt.cpp
+++ b/llvm/lib/Support/APInt.cpp
@@ -675,12 +675,11 @@ static inline uint32_t hashword(const uint64_t *k64, size_t length)
}
/*------------------------------------------- handle the last 3 uint32_t's */
- switch(length) /* all the case statements fall through */
- {
- case 3 : c+=k[2];
- case 2 : b+=k[1];
- case 1 : a+=k[0];
- final(a,b,c);
+ switch (length) { /* all the case statements fall through */
+ case 3 : c+=k[2];
+ case 2 : b+=k[1];
+ case 1 : a+=k[0];
+ final(a,b,c);
case 0: /* case 0: nothing left to add */
break;
}