Skip to content

Commit 865968c

Browse files
committed
polyval: remove use of ARMv8 crypto feature
It was removed from the nightly compiler: rust-lang/rust#87729
1 parent 1149b24 commit 865968c

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
target/
2+
**/Cargo.lock

polyval/src/backend/pmull.rs

-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,6 @@ impl Polyval {
6868
// TODO(tarcieri): investigate ordering optimizations and fusions e.g.`fuse-crypto-eor`
6969
#[inline]
7070
#[target_feature(enable = "neon")]
71-
#[target_feature(enable = "crypto")]
7271
unsafe fn mul(&mut self, x: &Block) {
7372
let h = self.h;
7473
let y = veorq_u8(self.y, vld1q_u8(x.as_ptr()));

0 commit comments

Comments
 (0)