@@ -241,7 +241,8 @@ public unsafe int Seek(ref Vector<byte> byte0Vector)
241
241
array = block. Array ;
242
242
while ( following > 0 )
243
243
{
244
- #if ! DEBUG // Need unit tests to test Vector path
244
+ #if ! DEBUG
245
+ // Need unit tests to test Vector path
245
246
// Check will be Jitted away https://github.com/dotnet/coreclr/issues/1079
246
247
if ( Vector . IsHardwareAccelerated )
247
248
{
@@ -261,7 +262,8 @@ public unsafe int Seek(ref Vector<byte> byte0Vector)
261
262
_index = index + FindFirstEqualByte ( ref byte0Equals ) ;
262
263
return byte0;
263
264
}
264
- #if ! DEBUG // Need unit tests to test Vector path
265
+ #if ! DEBUG
266
+ // Need unit tests to test Vector path
265
267
}
266
268
#endif
267
269
fixed ( byte * ptr = & block. Array [ index ] )
@@ -322,7 +324,8 @@ public unsafe int Seek(ref Vector<byte> byte0Vector, ref Vector<byte> byte1Vecto
322
324
while ( following > 0 )
323
325
{
324
326
325
- #if ! DEBUG // Need unit tests to test Vector path
327
+ #if ! DEBUG
328
+ // Need unit tests to test Vector path
326
329
// Check will be Jitted away https://github.com/dotnet/coreclr/issues/1079
327
330
if ( Vector . IsHardwareAccelerated )
328
331
{
@@ -360,7 +363,8 @@ public unsafe int Seek(ref Vector<byte> byte0Vector, ref Vector<byte> byte1Vecto
360
363
_index = index + byte1Index ;
361
364
return byte1 ;
362
365
}
363
- #if ! DEBUG // Need unit tests to test Vector path
366
+ #if ! DEBUG
367
+ // Need unit tests to test Vector path
364
368
}
365
369
#endif
366
370
fixed ( byte * ptr = & block . Array [ index ] )
@@ -428,7 +432,8 @@ public unsafe int Seek(ref Vector<byte> byte0Vector, ref Vector<byte> byte1Vecto
428
432
array = block. Array ;
429
433
while ( following > 0 )
430
434
{
431
- #if ! DEBUG // Need unit tests to test Vector path
435
+ #if ! DEBUG
436
+ // Need unit tests to test Vector path
432
437
// Check will be Jitted away https://github.com/dotnet/coreclr/issues/1079
433
438
if ( Vector . IsHardwareAccelerated )
434
439
{
@@ -493,7 +498,8 @@ public unsafe int Seek(ref Vector<byte> byte0Vector, ref Vector<byte> byte1Vecto
493
498
_index = index + toMove ;
494
499
return toReturn;
495
500
}
496
- #if ! DEBUG // Need unit tests to test Vector path
501
+ #if ! DEBUG
502
+ // Need unit tests to test Vector path
497
503
}
498
504
#endif
499
505
fixed ( byte * ptr = & block . Array [ index ] )
0 commit comments