1
Fork 0

Merge commit 'a8385522ad' into simd-remove-autosplats

This commit is contained in:
Jubilee Young 2021-12-02 18:27:47 -08:00
commit 2ea27bf6ef
22 changed files with 539 additions and 524 deletions

View file

@ -376,6 +376,12 @@ macro_rules! test_lanes {
fn lanes_32() {
implementation::<32>();
}
#[test]
#[cfg_attr(target_arch = "wasm32", wasm_bindgen_test::wasm_bindgen_test)]
fn lanes_64() {
implementation::<64>();
}
}
)*
}
@ -431,6 +437,12 @@ macro_rules! test_lanes_panic {
fn lanes_32() {
implementation::<32>();
}
#[test]
#[should_panic]
fn lanes_64() {
implementation::<64>();
}
}
)*
}