Skip to content

Commit 18fa6d9

Browse files
committed
Remove some llvm workarounds
1 parent bbb222f commit 18fa6d9

File tree

2 files changed

+4
-12
lines changed

2 files changed

+4
-12
lines changed

library/stdarch/crates/core_arch/src/x86/avx512f.rs

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -49621,9 +49621,7 @@ mod tests {
4962149621
assert_eq_m512i(r, e);
4962249622
}
4962349623

49624-
// FIXME(llvm): https://github.com/llvm/llvm-project/issues/154492
49625-
//#[simd_test(enable = "avx512f")]
49626-
#[simd_test(enable = "avx512f,avx512vl")]
49624+
#[simd_test(enable = "avx512f")]
4962749625
unsafe fn test_mm512_mask_cvttps_epu32() {
4962849626
let a = _mm512_setr_ps(
4962949627
0., -1.5, 2., -3.5, 4., -5.5, 6., -7.5, 8., 9.5, 10., 11.5, 12., 13.5, 14., 15.5,
@@ -49636,9 +49634,7 @@ mod tests {
4963649634
assert_eq_m512i(r, e);
4963749635
}
4963849636

49639-
// FIXME(llvm): https://github.com/llvm/llvm-project/issues/154492
49640-
//#[simd_test(enable = "avx512f")]
49641-
#[simd_test(enable = "avx512f,avx512vl")]
49637+
#[simd_test(enable = "avx512f")]
4964249638
unsafe fn test_mm512_maskz_cvttps_epu32() {
4964349639
let a = _mm512_setr_ps(
4964449640
0., -1.5, 2., -3.5, 4., -5.5, 6., -7.5, 8., 9.5, 10., 11.5, 12., 13.5, 14., 15.5,

library/stdarch/crates/core_arch/src/x86_64/avx512f.rs

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5311,9 +5311,7 @@ mod tests {
53115311
assert_eq_m256i(r, e);
53125312
}
53135313

5314-
// FIXME(llvm): https://github.com/llvm/llvm-project/issues/154492
5315-
//#[simd_test(enable = "avx512f")]
5316-
#[simd_test(enable = "avx512f,avx512vl")]
5314+
#[simd_test(enable = "avx512f")]
53175315
unsafe fn test_mm512_mask_cvttpd_epu32() {
53185316
let a = _mm512_setr_pd(0., -1.5, 2., -3.5, 4., -5.5, 6., -7.5);
53195317
let src = _mm256_set1_epi32(0);
@@ -5324,9 +5322,7 @@ mod tests {
53245322
assert_eq_m256i(r, e);
53255323
}
53265324

5327-
// FIXME(llvm): https://github.com/llvm/llvm-project/issues/154492
5328-
//#[simd_test(enable = "avx512f")]
5329-
#[simd_test(enable = "avx512f,avx512vl")]
5325+
#[simd_test(enable = "avx512f")]
53305326
unsafe fn test_mm512_maskz_cvttpd_epu32() {
53315327
let a = _mm512_setr_pd(0., -1.5, 2., -3.5, 4., -5.5, 6., -7.5);
53325328
let r = _mm512_maskz_cvttpd_epu32(0, a);

0 commit comments

Comments
 (0)