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
This commit is contained in:
Dimitry Andric 2010-10-13 17:55:53 +00:00
parent 0759386405
commit 235610273e
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=213797

View File

@ -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)