Skip to content

Commit

Permalink
Merge pull request #692 from Tazdevil971/master
Browse files Browse the repository at this point in the history
Fixed `__divtf3` having wrong cfg for f128
  • Loading branch information
tgross35 authored Sep 26, 2024
2 parents cc385f4 + 7c4138c commit bb18ce5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/float/div.rs
Original file line number Diff line number Diff line change
Expand Up @@ -620,7 +620,7 @@ intrinsics! {

#[avr_skip]
#[ppc_alias = __divkf3]
#[cfg(not(feature = "no-f16-f128"))]
#[cfg(f128_enabled)]
pub extern "C" fn __divtf3(a: f128, b: f128) -> f128 {
div(a, b)
}
Expand Down

0 comments on commit bb18ce5

Please sign in to comment.