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.
1 parent 713444d commit 93d1e6aCopy full SHA for 93d1e6a
crates/core_arch/src/arm_shared/neon/mod.rs
@@ -26,7 +26,7 @@ macro_rules! impl_sign_conversions_neon {
26
impl AsUnsigned for $signed {
27
type Unsigned = $unsigned;
28
29
- #[inline]
+ #[inline(always)]
30
fn as_unsigned(self) -> $unsigned {
31
unsafe { transmute(self) }
32
}
@@ -35,7 +35,7 @@ macro_rules! impl_sign_conversions_neon {
35
impl AsSigned for $unsigned {
36
type Signed = $signed;
37
38
39
fn as_signed(self) -> $signed {
40
41
0 commit comments