]> git.lizzy.rs Git - rust.git/blob - src/test/ui/simd/libm_no_std_cant_float.rs
Auto merge of #95454 - randomicon00:fix95444, r=wesleywiser
[rust.git] / src / test / ui / simd / libm_no_std_cant_float.rs
1 #![crate_type = "rlib"]
2 #![no_std]
3 #![feature(portable_simd)]
4 use core::simd::f32x4;
5
6 // For SIMD float ops, the LLIR version which is used to implement the portable
7 // forms of them may become calls to math.h AKA libm. So, we can't guarantee
8 // we can compile them for #![no_std] crates.
9 // Someday we may solve this.
10 // Until then, this test at least guarantees these functions require std.
11 fn guarantee_no_std_nolibm_calls() -> f32x4 {
12     let x = f32x4::from_array([0.1, 0.5, 0.6, -1.5]);
13     let x2 = x + x;
14     let _xc = x.ceil(); //~ ERROR E0599
15     let _xf = x.floor(); //~ ERROR E0599
16     let _xr = x.round(); //~ ERROR E0599
17     let _xt = x.trunc(); //~ ERROR E0599
18     let _xfma = x.mul_add(x, x); //~ ERROR E0599
19     let _xsqrt = x.sqrt(); //~ ERROR E0599
20     x2.abs() * x2
21 }