diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2021-04-27 09:29:28 -0700 |
---|---|---|
committer | Jussi Kivilinna <jussi.kivilinna@iki.fi> | 2021-05-17 21:34:29 +0300 |
commit | a1f5d87ed49beaab2e4754532b84bd201ef3f68c (patch) | |
tree | 8b5e9a6c087545a4fdbf3a3112eec5fab04961f5 /cipher/poly1305-s390x.S | |
parent | 5f814e8a4968c01a7ffc7762bcaf3ce040594caf (diff) | |
download | libgcrypt-a1f5d87ed49beaab2e4754532b84bd201ef3f68c.tar.gz |
Always include <config.h> in cipher assembly codes
* cipher/poly1305-s390x.S: Always include <config.h>.
--
When Intel CET is enabled, we need to include <cet.h> in assembly codes
to mark Intel CET support even if it is empty. We should always include
<config.h> in cipher assembly codes so that they will be marked for
Intel CET support when compiling for x86-64 and i686.
Signed-off-by: H.J. Lu <hjl.tools@gmail.com>
Diffstat (limited to 'cipher/poly1305-s390x.S')
-rw-r--r-- | cipher/poly1305-s390x.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cipher/poly1305-s390x.S b/cipher/poly1305-s390x.S index 844245f6..28bed560 100644 --- a/cipher/poly1305-s390x.S +++ b/cipher/poly1305-s390x.S @@ -18,8 +18,8 @@ * License along with this program; if not, see <http://www.gnu.org/licenses/>. */ -#if defined (__s390x__) && __GNUC__ >= 4 && __ARCH__ >= 9 #include <config.h> +#if defined (__s390x__) && __GNUC__ >= 4 && __ARCH__ >= 9 #if defined(HAVE_GCC_INLINE_ASM_S390X) #include "asm-poly1305-s390x.h" |