Skip to content

Commit 7c4138c

Browse files
committed
Fixed __divtf3 having wrong cfg for f128
1 parent cc385f4 commit 7c4138c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/float/div.rs

Lines changed: 1 addition & 1 deletion
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)