mirror of
https://github.com/rust-lang/rust.git
synced 2026-04-27 18:57:42 +03:00
Mark alias test wrappers as const fn where supported and clean up skip list
This commit is contained in:
@@ -3071,7 +3071,7 @@ macro_rules! test_mm_cvtsi32_ss_impl {
|
||||
}
|
||||
|
||||
#[simd_test(enable = "sse")]
|
||||
fn test_mm_cvtsi32_ss() {
|
||||
const fn test_mm_cvtsi32_ss() {
|
||||
test_mm_cvtsi32_ss_impl!(_mm_cvtsi32_ss);
|
||||
}
|
||||
|
||||
@@ -3207,12 +3207,12 @@ macro_rules! test_mm_load1_ps_impl {
|
||||
}
|
||||
|
||||
#[simd_test(enable = "sse")]
|
||||
fn test_mm_load1_ps() {
|
||||
const fn test_mm_load1_ps() {
|
||||
test_mm_load1_ps_impl!(_mm_load1_ps);
|
||||
}
|
||||
|
||||
#[simd_test(enable = "sse")]
|
||||
fn test_mm_load_ps1() {
|
||||
const fn test_mm_load_ps1() {
|
||||
test_mm_load1_ps_impl!(_mm_load_ps1);
|
||||
}
|
||||
|
||||
@@ -3276,12 +3276,12 @@ macro_rules! test_mm_store1_ps_impl {
|
||||
}
|
||||
|
||||
#[simd_test(enable = "sse")]
|
||||
fn test_mm_store1_ps() {
|
||||
const fn test_mm_store1_ps() {
|
||||
test_mm_store1_ps_impl!(_mm_store1_ps);
|
||||
}
|
||||
|
||||
#[simd_test(enable = "sse")]
|
||||
fn test_mm_store_ps1() {
|
||||
const fn test_mm_store_ps1() {
|
||||
test_mm_store1_ps_impl!(_mm_store_ps1);
|
||||
}
|
||||
|
||||
|
||||
@@ -250,7 +250,6 @@ fn verify_all_signatures() {
|
||||
"_mm_cvt_ss2si",
|
||||
"_mm_cvtt_ss2si",
|
||||
"_mm_cvt_si2ss",
|
||||
"_mm_set_ps1",
|
||||
"_mm_bslli_si128",
|
||||
"_mm_bsrli_si128",
|
||||
"_bextr2_u32",
|
||||
|
||||
Reference in New Issue
Block a user