Skip to content

Commit

Permalink
Remove 32-bit div implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
tgross35 committed Apr 14, 2024
1 parent d54c230 commit ff98786
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions src/float/div.rs
Original file line number Diff line number Diff line change
Expand Up @@ -914,13 +914,8 @@ intrinsics! {
div64(a, b)
}

// TODO: how should `HInt` be handled?
pub extern "C" fn __divtf3(a: f128, b: f128) -> f128 {
if cfg!(target_pointer_width = "64") {
div32(a, b)
} else {
div64(a, b)
}
div64(a, b)
}

#[cfg(target_arch = "arm")]
Expand Down

0 comments on commit ff98786

Please sign in to comment.