Skip to content

Commit bb18ce5

Browse files
authored
Merge pull request #692 from Tazdevil971/master
Fixed `__divtf3` having wrong cfg for f128
2 parents cc385f4 + 7c4138c commit bb18ce5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/float/div.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -620,7 +620,7 @@ intrinsics! {
620620

621621
#[avr_skip]
622622
#[ppc_alias = __divkf3]
623-
#[cfg(not(feature = "no-f16-f128"))]
623+
#[cfg(f128_enabled)]
624624
pub extern "C" fn __divtf3(a: f128, b: f128) -> f128 {
625625
div(a, b)
626626
}

0 commit comments

Comments
 (0)