Skip to content

Commit

Permalink
test commit
Browse files Browse the repository at this point in the history
  • Loading branch information
AaronKutch committed Dec 5, 2020
1 parent 5e76435 commit 9c20c31
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions testcrate/tests/conv.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@ macro_rules! i_to_f {
};
}

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

i_to_f!(100,
i64, f32, __floatdisf;
u32, f32, __floatunsisf;
u32, f64, __floatunsidf;
i32, f32, __floatsisf;
i32, f64, __floatsidf;
u64, f32, __floatundisf;
u64, f64, __floatundidf;
i64, f32, __floatdisf;
i64, f64, __floatdidf;
u128, f32, __floatuntisf;
u128, f64, __floatuntidf;
Expand Down

0 comments on commit 9c20c31

Please sign in to comment.