]> git.lizzy.rs Git - rust.git/blob - src/test/codegen/simd-intrinsic-float-minmax.rs
Enable emission of alignment attrs for pointer params
[rust.git] / src / test / codegen / simd-intrinsic-float-minmax.rs
1 // Copyright 2016 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 // ignore-emscripten
12 // min-llvm-version 7.0
13
14 // compile-flags: -C no-prepopulate-passes
15
16 #![crate_type = "lib"]
17
18 #![feature(repr_simd, platform_intrinsics)]
19 #![allow(non_camel_case_types)]
20
21 #[repr(simd)]
22 #[derive(Copy, Clone, PartialEq, Debug)]
23 pub struct f32x4(pub f32, pub f32, pub f32, pub f32);
24
25 extern "platform-intrinsic" {
26     fn simd_fmin<T>(x: T, y: T) -> T;
27     fn simd_fmax<T>(x: T, y: T) -> T;
28 }
29
30 // CHECK-LABEL: @fmin
31 #[no_mangle]
32 pub unsafe fn fmin(a: f32x4, b: f32x4) -> f32x4 {
33     // CHECK: call <4 x float> @llvm.minnum.v4f32
34     simd_fmin(a, b)
35 }
36
37 // CHECK-LABEL: @fmax
38 #[no_mangle]
39 pub unsafe fn fmax(a: f32x4, b: f32x4) -> f32x4 {
40     // CHECK: call <4 x float> @llvm.maxnum.v4f32
41     simd_fmax(a, b)
42 }