mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-19 03:24:09 +00:00
Fix whitespacing (space after switch).
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@71738 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -675,8 +675,7 @@ static inline uint32_t hashword(const uint64_t *k64, size_t length)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/*------------------------------------------- handle the last 3 uint32_t's */
|
/*------------------------------------------- handle the last 3 uint32_t's */
|
||||||
switch(length) /* all the case statements fall through */
|
switch (length) { /* all the case statements fall through */
|
||||||
{
|
|
||||||
case 3 : c+=k[2];
|
case 3 : c+=k[2];
|
||||||
case 2 : b+=k[1];
|
case 2 : b+=k[1];
|
||||||
case 1 : a+=k[0];
|
case 1 : a+=k[0];
|
||||||
|
Reference in New Issue
Block a user