aesni-x86[_64].pl: relax alignment requirement.

This commit is contained in:
Andy Polyakov 2011-05-30 09:15:16 +00:00
parent 3e2e231852
commit 8da721ee2b
2 changed files with 2 additions and 2 deletions

View File

@ -54,7 +54,7 @@ require "x86asm.pl";
&asm_init($ARGV[0],$0);
if ($PREFIX eq "aesni") { $movekey=*movaps; }
if ($PREFIX eq "aesni") { $movekey=*movups; }
else { $movekey=*movups; }
$len="eax";

View File

@ -174,7 +174,7 @@ die "can't locate x86_64-xlate.pl";
open STDOUT,"| $^X $xlate $flavour $output";
$movkey = $PREFIX eq "aesni" ? "movaps" : "movups";
$movkey = $PREFIX eq "aesni" ? "movups" : "movups";
@_4args=$win64? ("%rcx","%rdx","%r8", "%r9") : # Win64 order
("%rdi","%rsi","%rdx","%rcx"); # Unix order