Skip to content

Commit ff98786

Browse files
committed
Remove 32-bit div implementation
1 parent d54c230 commit ff98786

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

src/float/div.rs

+1-6
Original file line numberDiff line numberDiff line change
@@ -914,13 +914,8 @@ intrinsics! {
914914
div64(a, b)
915915
}
916916

917-
// TODO: how should `HInt` be handled?
918917
pub extern "C" fn __divtf3(a: f128, b: f128) -> f128 {
919-
if cfg!(target_pointer_width = "64") {
920-
div32(a, b)
921-
} else {
922-
div64(a, b)
923-
}
918+
div64(a, b)
924919
}
925920

926921
#[cfg(target_arch = "arm")]

0 commit comments

Comments
 (0)