We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 562362b + 83b996d commit 32c0477Copy full SHA for 32c0477
src/int/udiv.rs
@@ -57,6 +57,7 @@ intrinsics! {
57
// Note: we use block configuration and not `if cfg!(...)`, because we need to entirely disable
58
// the existence of `u128_div_rem` to get 32-bit SPARC to compile, see `u128_divide_sparc` docs.
59
60
+ #[avr_skip]
61
#[win64_128bit_abi_hack]
62
/// Returns `n / d`
63
pub extern "C" fn __udivti3(n: u128, d: u128) -> u128 {
@@ -68,6 +69,7 @@ intrinsics! {
68
69
}
70
71
72
73
74
/// Returns `n % d`
75
pub extern "C" fn __umodti3(n: u128, d: u128) -> u128 {
0 commit comments