Skip to content

Commit 2eb7205

Browse files
authored
polyval: remove use of ARMv8 crypto feature (#137)
It was removed from the nightly compiler: rust-lang/rust#87729
1 parent 1149b24 commit 2eb7205

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
target/
2+
**/Cargo.lock

polyval/src/backend/pmull.rs

Lines changed: 0 additions & 1 deletion
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)