We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d5ca981 commit 03f0916Copy full SHA for 03f0916
testcrate/src/bench.rs
@@ -82,12 +82,9 @@ pub fn skip_sys_checks(test_name: &str) -> bool {
82
83
/// Still run benchmarks/tests but don't check correctness between compiler-builtins and
84
/// assembly functions
85
-pub fn skip_asm_checks(test_name: &str) -> bool {
86
- // FIXME(f16_f128): rounding error
87
- // <https://github.com/rust-lang/compiler-builtins/issues/616>
88
- const SKIPPED: &[&str] = &["mul_f32", "mul_f64"];
89
-
90
- SKIPPED.contains(&test_name)
+pub fn skip_asm_checks(_test_name: &str) -> bool {
+ // Nothing to skip at this time
+ false
91
}
92
93
/// Create a comparison of the system symbol, compiler_builtins, and optionally handwritten
0 commit comments