2024-02-21 16:12:19 -06:00
|
|
|
//@ only-wasm32-wasip1
|
2024-07-12 17:10:33 -05:00
|
|
|
//@ compile-flags: -Ctarget-feature=+relaxed-simd --crate-type=lib
|
2024-02-21 16:12:19 -06:00
|
|
|
//@ build-pass
|
|
|
|
|
|
|
|
use std::arch::wasm32::*;
|
|
|
|
|
|
|
|
pub fn test(a: v128, b: v128, m: v128) -> v128 {
|
|
|
|
i64x2_relaxed_laneselect(a, b, m)
|
|
|
|
}
|