From 235610273e2b3b3db377961d3ac84f04ee86cf32 Mon Sep 17 00:00:00 2001 From: Dimitry Andric Date: Wed, 13 Oct 2010 17:55:53 +0000 Subject: [PATCH] Change two missed instances of 'retq' in aeskeys_i386.S to 'retl', which makes it possible to assemble this file with gas from newer binutils. Reviewed by: kib --- sys/crypto/aesni/aeskeys_i386.S | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/crypto/aesni/aeskeys_i386.S b/sys/crypto/aesni/aeskeys_i386.S index 60a6a430006c..f575512cc988 100644 --- a/sys/crypto/aesni/aeskeys_i386.S +++ b/sys/crypto/aesni/aeskeys_i386.S @@ -52,7 +52,7 @@ _key_expansion_256a: pxor %xmm1,%xmm0 movaps %xmm0,(%edx) addl $0x10,%edx - retq + retl .cfi_endproc END(_key_expansion_128) @@ -76,7 +76,7 @@ ENTRY(_key_expansion_192a) shufps $0b01001110,%xmm2,%xmm1 movaps %xmm1,0x10(%edx) addl $0x20,%edx - retq + retl .cfi_endproc END(_key_expansion_192a)