From 6b2ca180a8e7b84eee5b92632ece855f43dd8fc1 Mon Sep 17 00:00:00 2001 From: Solar Designer Date: Wed, 11 Dec 2024 02:47:20 +0100 Subject: [PATCH] Add change log entry on AES-NI asm block fixes Co-authored-by: Gilles Peskine Signed-off-by: Solar Designer --- ChangeLog.d/fix-aesni-asm-clobbers.txt | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 ChangeLog.d/fix-aesni-asm-clobbers.txt diff --git a/ChangeLog.d/fix-aesni-asm-clobbers.txt b/ChangeLog.d/fix-aesni-asm-clobbers.txt new file mode 100644 index 0000000000..538f0c5115 --- /dev/null +++ b/ChangeLog.d/fix-aesni-asm-clobbers.txt @@ -0,0 +1,5 @@ +Bugfix + * Fix missing constraints on the AES-NI inline assembly which is used on + GCC-like compilers when building AES for generic x86_64 targets. This + may have resulted in incorrect code with some compilers, depending on + optimizations. Fixes #9819.