Skip to content

Commit 3cd6740

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 3fa5a8c commit 3cd6740

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
@@ -34,11 +34,6 @@ pub fn skip_sys_checks(test_name: &str) -> bool {
3434
"add_f128", "sub_f128", "mul_f128", "div_f128", "powi_f32", "powi_f64",
3535
];
3636

37-
// FIXME(f16_f128): Wide multiply carry bug in `compiler-rt`, re-enable when nightly no longer
38-
// uses `compiler-rt` version.
39-
// <https://github.com/llvm/llvm-project/issues/91840>
40-
const AARCH64_SKIPPED: &[&str] = &["mul_f128", "div_f128"];
41-
4237
// FIXME(llvm): system symbols have incorrect results on Windows
4338
// <https://github.com/rust-lang/compiler-builtins/issues/617#issuecomment-2121359807>
4439
const WINDOWS_SKIPPED: &[&str] = &[
@@ -69,10 +64,6 @@ pub fn skip_sys_checks(test_name: &str) -> bool {
6964
return true;
7065
}
7166

72-
if cfg!(target_arch = "aarch64") && AARCH64_SKIPPED.contains(&test_name) {
73-
return true;
74-
}
75-
7667
if cfg!(target_family = "windows") && WINDOWS_SKIPPED.contains(&test_name) {
7768
return true;
7869
}

0 commit comments

Comments
 (0)