Skip to content

Commit 9c20c31

Browse files
committed
test commit
1 parent 5e76435 commit 9c20c31

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

testcrate/tests/conv.rs

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

15-
// `i686` targets fail with this for some reason.
16-
#[cfg(not(target_arch = "x86"))]
1715
#[test]
1816
fn int_to_float() {
1917
use compiler_builtins::float::conv::{
@@ -22,13 +20,13 @@ fn int_to_float() {
2220
};
2321

2422
i_to_f!(100,
23+
i64, f32, __floatdisf;
2524
u32, f32, __floatunsisf;
2625
u32, f64, __floatunsidf;
2726
i32, f32, __floatsisf;
2827
i32, f64, __floatsidf;
2928
u64, f32, __floatundisf;
3029
u64, f64, __floatundidf;
31-
i64, f32, __floatdisf;
3230
i64, f64, __floatdidf;
3331
u128, f32, __floatuntisf;
3432
u128, f64, __floatuntidf;

0 commit comments

Comments
 (0)