Skip to content

Commit 82f9186

Browse files
committed
Enable tests that were skipped on aarch64
The LLVM issue was resolved a while ago, these should no longer be a problem.
1 parent 9c4ec8b commit 82f9186

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

builtins-test/src/bench.rs

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,6 @@ pub fn skip_sys_checks(test_name: &str) -> bool {
2929
"add_f128", "sub_f128", "mul_f128", "div_f128", "powi_f32", "powi_f64",
3030
];
3131

32-
// FIXME(f16_f128): Wide multiply carry bug in `compiler-rt`, re-enable when nightly no longer
33-
// uses `compiler-rt` version.
34-
// <https://github.com/llvm/llvm-project/issues/91840>
35-
const AARCH64_SKIPPED: &[&str] = &["mul_f128", "div_f128"];
36-
3732
// FIXME(llvm): system symbols have incorrect results on Windows
3833
// <https://github.com/rust-lang/compiler-builtins/issues/617#issuecomment-2121359807>
3934
const WINDOWS_SKIPPED: &[&str] = &[
@@ -58,10 +53,6 @@ pub fn skip_sys_checks(test_name: &str) -> bool {
5853
return true;
5954
}
6055

61-
if cfg!(target_arch = "aarch64") && AARCH64_SKIPPED.contains(&test_name) {
62-
return true;
63-
}
64-
6556
if cfg!(target_family = "windows") && WINDOWS_SKIPPED.contains(&test_name) {
6657
return true;
6758
}

0 commit comments

Comments
 (0)