Skip to content

Commit 32c0477

Browse files
authored
Merge pull request #466 from Patryk27/avr
2 parents 562362b + 83b996d commit 32c0477

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/int/udiv.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ intrinsics! {
5757
// Note: we use block configuration and not `if cfg!(...)`, because we need to entirely disable
5858
// the existence of `u128_div_rem` to get 32-bit SPARC to compile, see `u128_divide_sparc` docs.
5959

60+
#[avr_skip]
6061
#[win64_128bit_abi_hack]
6162
/// Returns `n / d`
6263
pub extern "C" fn __udivti3(n: u128, d: u128) -> u128 {
@@ -68,6 +69,7 @@ intrinsics! {
6869
}
6970
}
7071

72+
#[avr_skip]
7173
#[win64_128bit_abi_hack]
7274
/// Returns `n % d`
7375
pub extern "C" fn __umodti3(n: u128, d: u128) -> u128 {

0 commit comments

Comments
 (0)