rust/tests/ui/target-feature/implicit-features.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
234 B
Rust
Raw Normal View History

//@ only-wasm32-wasip1
//@ compile-flags: --crate-type=lib
//@ build-pass
use std::arch::wasm32::*;
#[target_feature(enable = "relaxed-simd")]
pub fn test(a: v128, b: v128, m: v128) -> v128 {
i64x2_relaxed_laneselect(a, b, m)
}