From b6bcb3dc22e87c19345b4d51d50a4f2b4c9df544 Mon Sep 17 00:00:00 2001 From: Frank Denis Date: Tue, 12 Sep 2023 16:02:49 +0200 Subject: [PATCH] Forgotten attribute pop --- .../aes256gcm/armcrypto/aead_aes256gcm_armcrypto.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/libsodium/crypto_aead/aes256gcm/armcrypto/aead_aes256gcm_armcrypto.c b/src/libsodium/crypto_aead/aes256gcm/armcrypto/aead_aes256gcm_armcrypto.c index 2c37526d..0a5a1281 100644 --- a/src/libsodium/crypto_aead/aes256gcm/armcrypto/aead_aes256gcm_armcrypto.c +++ b/src/libsodium/crypto_aead/aes256gcm/armcrypto/aead_aes256gcm_armcrypto.c @@ -1025,4 +1025,8 @@ crypto_aead_aes256gcm_is_available(void) return sodium_runtime_has_armcrypto(); } +#ifdef __clang__ +#pragma clang attribute pop +#endif + #endif