Skip to content

Commit be88b9f

Browse files
committed
Fix ARM PMULL clearing declared CRC ISA
1 parent 523ddc9 commit be88b9f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/crc_arm_pmull.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ static uint32_t crc32_shift_pmull(uint32_t crc1, uint32_t n) {
207207
void RapidYenc::crc_pmull_set_funcs() {
208208
_crc32_multiply = &crc32_multiply_pmull;
209209
_crc32_shift = &crc32_shift_pmull;
210-
_crc32_isa &= ISA_FEATURE_PMULL;
210+
_crc32_isa |= ISA_FEATURE_PMULL;
211211
}
212212

213213
#else

0 commit comments

Comments
 (0)