Skip to content

Commit

Permalink
Fix _mm_aesenclast_si128 build failure with crypto
Browse files Browse the repository at this point in the history
Patched by Xiao Wang <wangxiao@cs.northwestern.edu>
  • Loading branch information
jserv committed Dec 27, 2022
1 parent 72daa0f commit 8e1cb46
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sse2neon.h
Original file line number Diff line number Diff line change
Expand Up @@ -9889,7 +9889,7 @@ FORCE_INLINE __m128i _mm_aesenclast_si128(__m128i a, __m128i RoundKey)
FORCE_INLINE __m128i _mm_aesdeclast_si128(__m128i a, __m128i RoundKey)
{
return vreinterpretq_m128i_u8(
vaesdq_u8(vreinterpretq_u8_m128i(a), vdupq_n_u8(0))) ^
vaesdq_u8(vreinterpretq_u8_m128i(a), vdupq_n_u8(0)) ^
vreinterpretq_u8_m128i(RoundKey);
}

Expand Down

0 comments on commit 8e1cb46

Please sign in to comment.