Skip to content

Commit 9bb1109

Browse files
committed
remove platform-intrinsics ABI; make SIMD intrinsics be regular intrinsics
1 parent ac8c8b6 commit 9bb1109

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

example/float-minmax-pass.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44

55
// Test that the simd_f{min,max} intrinsics produce the correct results.
66

7-
#![feature(repr_simd, platform_intrinsics)]
7+
#![feature(repr_simd, intrinsics)]
88
#![allow(non_camel_case_types)]
99

1010
#[repr(simd)]
1111
#[derive(Copy, Clone, PartialEq, Debug)]
1212
struct f32x4(pub f32, pub f32, pub f32, pub f32);
1313

14-
extern "platform-intrinsic" {
14+
extern "intrinsic" {
1515
fn simd_fmin<T>(x: T, y: T) -> T;
1616
fn simd_fmax<T>(x: T, y: T) -> T;
1717
}

0 commit comments

Comments
 (0)