fix: Add #[avr_skip] for __addsf3 & __adddf3
It looks like I've forgotten about them [back in 2023](https://github.com/rust-lang/compiler-builtins/pull/527).
This commit is contained in:
parent
1ea3044bdf
commit
461682bd91
1 changed files with 2 additions and 0 deletions
|
|
@ -189,12 +189,14 @@ where
|
|||
}
|
||||
|
||||
intrinsics! {
|
||||
#[avr_skip]
|
||||
#[aapcs_on_arm]
|
||||
#[arm_aeabi_alias = __aeabi_fadd]
|
||||
pub extern "C" fn __addsf3(a: f32, b: f32) -> f32 {
|
||||
add(a, b)
|
||||
}
|
||||
|
||||
#[avr_skip]
|
||||
#[aapcs_on_arm]
|
||||
#[arm_aeabi_alias = __aeabi_dadd]
|
||||
pub extern "C" fn __adddf3(a: f64, b: f64) -> f64 {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue