svn commit: r213797 - head/sys/crypto/aesni

Dimitry Andric dim at FreeBSD.org
Wed Oct 13 17:55:53 UTC 2010


Author: dim
Date: Wed Oct 13 17:55:53 2010
New Revision: 213797
URL: http://svn.freebsd.org/changeset/base/213797

Log:
  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

Modified:
  head/sys/crypto/aesni/aeskeys_i386.S

Modified: head/sys/crypto/aesni/aeskeys_i386.S
==============================================================================
--- head/sys/crypto/aesni/aeskeys_i386.S	Wed Oct 13 17:55:19 2010	(r213796)
+++ head/sys/crypto/aesni/aeskeys_i386.S	Wed Oct 13 17:55:53 2010	(r213797)
@@ -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)
 


More information about the svn-src-head mailing list