Skip to content

Commit

Permalink
Remove inline never
Browse files Browse the repository at this point in the history
  • Loading branch information
gatesn committed Jul 19, 2024
1 parent 9363cdb commit f819899
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/bitpacking.rs
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,6 @@ macro_rules! impl_packing {
($T:ty) => {
paste! {
impl BitPacking for $T {
#[inline(never)] // Makes it easier to disassemble and validate ASM.
fn pack<const W: usize>(
input: &[Self; 1024],
output: &mut [Self; 1024 * W / Self::T],
Expand Down Expand Up @@ -96,7 +95,6 @@ macro_rules! impl_packing {
})
}

#[inline(never)]
fn unpack<const W: usize>(
input: &[Self; 1024 * W / Self::T],
output: &mut [Self; 1024],
Expand Down

0 comments on commit f819899

Please sign in to comment.