Commit e6255a7d authored by Andy Polyakov's avatar Andy Polyakov
Browse files

s390x asm pack: fix typos.

parent 65a0f684
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -138,7 +138,7 @@ $code.=<<___ if(!$softonly);
.align	32
.Lsoft_ghash:
___
$cdoe.=<<___ if ($flavour =~ /3[12]/);
$code.=<<___ if ($flavour =~ /3[12]/);
	llgfr	$len,$len
___
$code.=<<___;
+4 −4
Original line number Diff line number Diff line
@@ -171,10 +171,10 @@ $ikey="%r7";
$iinp="%r8";

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

___
}