Skip to content

Commit 5e76435

Browse files
committed
disable integer to float testing on i686
1 parent 6413d9b commit 5e76435

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

testcrate/tests/conv.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ macro_rules! i_to_f {
1212
};
1313
}
1414

15-
#[cfg(not(all(target_arch = "x86", not(target_feature = "sse"))))]
15+
// `i686` targets fail with this for some reason.
16+
#[cfg(not(target_arch = "x86"))]
1617
#[test]
1718
fn int_to_float() {
1819
use compiler_builtins::float::conv::{

0 commit comments

Comments
 (0)