Bug 1144366 followup - Stop declaring multiple pointers on a single line. r=jorendorff

This commit is contained in:
Jan de Mooij
2015-04-02 11:22:21 +02:00
parent ab88ebd3af
commit 75afa21431
55 changed files with 261 additions and 161 deletions

View File

@@ -248,7 +248,8 @@ static uint32_t quorem2(Bigint* b, int32_t k)
{
ULong mask;
ULong result;
ULong* bx, *bxe;
ULong* bx;
ULong* bxe;
int32_t w;
int32_t n = k >> 5;
k &= 0x1F;
@@ -365,9 +366,10 @@ js_dtobasestr(DtoaState* state, int base, double dinput)
/* We have a fraction. */
int e, bbits;
int32_t s2, done;
Bigint* b, *s, *mlo, *mhi;
b = s = mlo = mhi = nullptr;
Bigint* b = nullptr;
Bigint* s = nullptr;
Bigint* mlo = nullptr;
Bigint* mhi = nullptr;
*p++ = '.';
b = d2b(PASS_STATE df, &e, &bbits);