s390x asm pack: fix typos.

This commit is contained in:
Andy Polyakov 2012-04-12 06:47:01 +00:00
parent 18fb1fae08
commit 2d613908e8
2 changed files with 5 additions and 5 deletions

View File

@ -138,7 +138,7 @@ $code.=<<___ if(!$softonly);
.align 32 .align 32
.Lsoft_ghash: .Lsoft_ghash:
___ ___
$cdoe.=<<___ if ($flavour =~ /3[12]/); $code.=<<___ if ($flavour =~ /3[12]/);
llgfr $len,$len llgfr $len,$len
___ ___
$code.=<<___; $code.=<<___;

View File

@ -171,10 +171,10 @@ $ikey="%r7";
$iinp="%r8"; $iinp="%r8";
$code.=<<___; $code.=<<___;
.globl RC4_set_key .globl private_RC4_set_key
.type RC4_set_key,\@function .type private_RC4_set_key,\@function
.align 64 .align 64
RC4_set_key: private_RC4_set_key:
stm${g} %r6,%r8,6*$SIZE_T($sp) stm${g} %r6,%r8,6*$SIZE_T($sp)
lhi $cnt,256 lhi $cnt,256
la $idx,0(%r0) la $idx,0(%r0)
@ -210,7 +210,7 @@ RC4_set_key:
.Ldone: .Ldone:
lm${g} %r6,%r8,6*$SIZE_T($sp) lm${g} %r6,%r8,6*$SIZE_T($sp)
br $rp br $rp
.size RC4_set_key,.-RC4_set_key .size private_RC4_set_key,.-private_RC4_set_key
___ ___
} }