Skip to content

Commit 3e608c6

Browse files
authored
Merge pull request rust-lang#692 from Tazdevil971/master
Fixed `__divtf3` having wrong cfg for f128
2 parents b8a2df1 + 8c31ec9 commit 3e608c6

File tree

1 file changed

+1
-1
lines changed
  • library/compiler-builtins/src/float

1 file changed

+1
-1
lines changed

library/compiler-builtins/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)