mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +00:00
10 lines
222 B
Rust
10 lines
222 B
Rust
//@ only-wasm32-wasip1
|
|
//@ compile-flags: -Ctarget-feature=+relaxed-simd --crate-type=lib
|
|
//@ build-pass
|
|
|
|
use std::arch::wasm32::*;
|
|
|
|
pub fn test(a: v128, b: v128, m: v128) -> v128 {
|
|
i64x2_relaxed_laneselect(a, b, m)
|
|
}
|