Skip to content

Commit 2aff962

Browse files
committed
removed macro-generated harnesses that checked for equality of floats
1 parent 7ec0651 commit 2aff962

File tree

1 file changed

+0
-4
lines changed
  • library/core/src/intrinsics

1 file changed

+0
-4
lines changed

library/core/src/intrinsics/mod.rs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4731,16 +4731,12 @@ mod verify {
47314731
transmute_unchecked_two_ways!(transmute_unchecked_2ways_i32_to_u32, i32, u32);
47324732
transmute_unchecked_two_ways!(transmute_unchecked_2ways_u32_to_i32, u32, i32);
47334733
transmute_unchecked_two_ways!(transmute_unchecked_2ways_i32_to_f32, i32, f32);
4734-
transmute_unchecked_two_ways!(transmute_unchecked_2ways_f32_to_i32, f32, i32);
47354734
transmute_unchecked_two_ways!(transmute_unchecked_2ways_u32_to_f32, u32, f32);
4736-
transmute_unchecked_two_ways!(transmute_unchecked_2ways_f32_to_u32, f32, u32);
47374735
//transmute 2-ways between the 8-byte numerical types
47384736
transmute_unchecked_two_ways!(transmute_unchecked_2ways_i64_to_u64, i64, u64);
47394737
transmute_unchecked_two_ways!(transmute_unchecked_2ways_u64_to_i64, u64, i64);
47404738
transmute_unchecked_two_ways!(transmute_unchecked_2ways_i64_to_f64, i64, f64);
4741-
transmute_unchecked_two_ways!(transmute_unchecked_2ways_f64_to_i64, f64, i64);
47424739
transmute_unchecked_two_ways!(transmute_unchecked_2ways_u64_to_f64, u64, f64);
4743-
transmute_unchecked_two_ways!(transmute_unchecked_2ways_f64_to_u64, f64, u64);
47444740
//transmute 2-ways between arrays of bytes and numerical types
47454741
transmute_unchecked_two_ways!(transmute_unchecked_2ways_arr_to_u32, [u8; 4], u32);
47464742
transmute_unchecked_two_ways!(transmute_unchecked_2ways_u32_to_arr, u32, [u8; 4]);

0 commit comments

Comments
 (0)