From ed9b09e98019db5818a2dc310139ff3289412c50 Mon Sep 17 00:00:00 2001 From: Adam Ierymenko Date: Tue, 20 Oct 2020 18:52:36 -0400 Subject: [PATCH] Missing flag. --- node/AES_aesni.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/node/AES_aesni.cpp b/node/AES_aesni.cpp index 6990b6786..6fe705ecf 100644 --- a/node/AES_aesni.cpp +++ b/node/AES_aesni.cpp @@ -274,7 +274,7 @@ void AES::GMAC::p_aesNIUpdate(const uint8_t *in, unsigned int len) noexcept _rp = len; // len is always less than 16 here } -__attribute__((__target__("ssse3,sse4,sse4.1,sse4.2,pclmul"))) +__attribute__((__target__("ssse3,sse4,sse4.1,sse4.2,pclmul,aes"))) void AES::GMAC::p_aesNIFinish(uint8_t tag[16]) noexcept { __m128i y = _mm_loadu_si128(reinterpret_cast(_y));