@@ -244,14 +244,14 @@ public SieveResult sieve() {
244244 t |= UNSAFE .getLong (x +=8 );
245245 t |= UNSAFE .getLong (x +=8 );
246246 t |= UNSAFE .getLong (x +=8 );
247- if ((t & LONG_MASK ) == 0 ) continue ;
247+ if ((t & LONG_MASK ) == 0 ) continue ;
248248
249249 // back up to get the last 8 and look in more detail
250250 x -= 256 ;
251251
252- for (int l =0 ; l <32 ; l ++) {
252+ for (int l =0 ; l <32 ; l ++) {
253253 final long y = UNSAFE .getLong (x +=8 );
254- if ((y & LONG_MASK ) != 0 ) {
254+ if ((y & LONG_MASK ) != 0 ) {
255255 testLongPositive (y , (int ) (x -sieveArrayAddress ));
256256 }
257257 }
@@ -355,14 +355,14 @@ public SieveResult sieve() {
355355 t |= UNSAFE .getLong (x +=8 );
356356 t |= UNSAFE .getLong (x +=8 );
357357 t |= UNSAFE .getLong (x +=8 );
358- if ((t & LONG_MASK ) == 0 ) continue ;
358+ if ((t & LONG_MASK ) == 0 ) continue ;
359359
360360 // back up to get the last 8 and look in more detail
361361 x -= 256 ;
362362
363- for (int l =0 ; l <32 ; l ++) {
363+ for (int l =0 ; l <32 ; l ++) {
364364 final long y = UNSAFE .getLong (x +=8 );
365- if ((y & LONG_MASK ) != 0 ) {
365+ if ((y & LONG_MASK ) != 0 ) {
366366 testLongNegative (y , (int ) (x -sieveArrayAddress ));
367367 }
368368 }
0 commit comments