Skip to content

Commit

Permalink
Fix ARM PMULL clearing declared CRC ISA
Browse files Browse the repository at this point in the history
  • Loading branch information
animetosho committed May 18, 2024
1 parent 523ddc9 commit be88b9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/crc_arm_pmull.cc
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ static uint32_t crc32_shift_pmull(uint32_t crc1, uint32_t n) {
void RapidYenc::crc_pmull_set_funcs() {
_crc32_multiply = &crc32_multiply_pmull;
_crc32_shift = &crc32_shift_pmull;
_crc32_isa &= ISA_FEATURE_PMULL;
_crc32_isa |= ISA_FEATURE_PMULL;
}

#else
Expand Down

0 comments on commit be88b9f

Please sign in to comment.