mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 06:44:35 +00:00
Switch test back to run-pass.
This commit is contained in:
parent
2942121736
commit
7b1eedaae8
@ -1,6 +1,5 @@
|
||||
// build-pass
|
||||
|
||||
#![crate_type = "lib"]
|
||||
// run-pass
|
||||
// compile-flags: -O -Zverify-llvm-ir
|
||||
|
||||
#![feature(repr_simd)]
|
||||
#![feature(platform_intrinsics)]
|
||||
@ -8,9 +7,19 @@
|
||||
#[allow(non_camel_case_types)]
|
||||
#[derive(Clone, Copy)]
|
||||
#[repr(simd)]
|
||||
pub struct i32x4([i32; 4]);
|
||||
struct i32x4([i32; 4]);
|
||||
|
||||
pub fn f(a: i32x4) -> [i32; 4] {
|
||||
let b = a;
|
||||
b.0
|
||||
extern "platform-intrinsic" {
|
||||
pub(crate) fn simd_add<T>(x: T, y: T) -> T;
|
||||
}
|
||||
|
||||
#[inline(always)]
|
||||
fn to_array(a: i32x4) -> [i32; 4] {
|
||||
a.0
|
||||
}
|
||||
|
||||
fn main() {
|
||||
let a = i32x4([1, 2, 3, 4]);
|
||||
let b = unsafe { simd_add(a, a) };
|
||||
assert_eq!(to_array(b), [2, 4, 6, 8]);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user