Merge pull request #692 from Tazdevil971/master

Fixed `__divtf3` having wrong cfg for f128
This commit is contained in:
Trevor Gross 2024-09-26 10:26:44 -04:00 committed by GitHub
commit 3e608c6cc0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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)
}