about summary refs log tree commit diff
path: root/tests/ui/target-feature/implicit-features-cli.rs
blob: 34e7c3d5066592bf9d185bfe58742eb504a9c64e (plain)
1
2
3
4
5
6
7
8
9
//@ 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)
}