Skip to content

Commit 5837989

Browse files
committed
fix: Add #[avr_skip] for __addsf3 & __adddf3
It looks like I've forgotten about them [back in 2023](#527).
1 parent ab63499 commit 5837989

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/float/add.rs

+2
Original file line numberDiff line numberDiff line change
@@ -189,12 +189,14 @@ where
189189
}
190190

191191
intrinsics! {
192+
#[avr_skip]
192193
#[aapcs_on_arm]
193194
#[arm_aeabi_alias = __aeabi_fadd]
194195
pub extern "C" fn __addsf3(a: f32, b: f32) -> f32 {
195196
add(a, b)
196197
}
197198

199+
#[avr_skip]
198200
#[aapcs_on_arm]
199201
#[arm_aeabi_alias = __aeabi_dadd]
200202
pub extern "C" fn __adddf3(a: f64, b: f64) -> f64 {

0 commit comments

Comments
 (0)