File tree 2 files changed +15
-0
lines changed
2 files changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -37,3 +37,6 @@ impl SupportedLaneCount for LaneCount<16> {
37
37
impl SupportedLaneCount for LaneCount < 32 > {
38
38
type BitMask = [ u8 ; 4 ] ;
39
39
}
40
+ impl SupportedLaneCount for LaneCount < 64 > {
41
+ type BitMask = [ u8 ; 8 ] ;
42
+ }
Original file line number Diff line number Diff line change @@ -376,6 +376,12 @@ macro_rules! test_lanes {
376
376
fn lanes_32( ) {
377
377
implementation:: <32 >( ) ;
378
378
}
379
+
380
+ #[ test]
381
+ #[ cfg_attr( target_arch = "wasm32" , wasm_bindgen_test:: wasm_bindgen_test) ]
382
+ fn lanes_64( ) {
383
+ implementation:: <64 >( ) ;
384
+ }
379
385
}
380
386
) *
381
387
}
@@ -431,6 +437,12 @@ macro_rules! test_lanes_panic {
431
437
fn lanes_32( ) {
432
438
implementation:: <32 >( ) ;
433
439
}
440
+
441
+ #[ test]
442
+ #[ should_panic]
443
+ fn lanes_64( ) {
444
+ implementation:: <64 >( ) ;
445
+ }
434
446
}
435
447
) *
436
448
}
You can’t perform that action at this time.
0 commit comments