Skip to content

Commit

Permalink
remove accidential committed prefetch
Browse files Browse the repository at this point in the history
  • Loading branch information
PSeitz committed May 15, 2021
1 parent adb30c4 commit c7e58de
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions src/block/compress.rs
Original file line number Diff line number Diff line change
Expand Up @@ -491,15 +491,6 @@ pub(crate) fn compress_internal<T: HashTable, const USE_DICT: bool>(
if duplicate_length >= 0xF {
write_integer(output, duplicate_length - 0xF);
}
#[cfg(not(feature = "safe-encode"))]
{
unsafe {
core::arch::x86_64::_mm_prefetch(
input.as_ptr().add(cur) as *const i8,
core::arch::x86_64::_MM_HINT_T0,
);
}
}
literal_start = cur;
}
}
Expand Down

0 comments on commit c7e58de

Please sign in to comment.