Mark alias test wrappers as const fn where supported and clean up skip list

This commit is contained in:
ArunTamil21
2026-03-24 12:23:05 +00:00
parent 2c76cb3479
commit 30573344b0
2 changed files with 5 additions and 6 deletions
@@ -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",