summaryrefslogtreecommitdiffstats
path: root/crypto/perlasm/ppc-xlate.pl
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/perlasm/ppc-xlate.pl')
-rwxr-xr-xcrypto/perlasm/ppc-xlate.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/perlasm/ppc-xlate.pl b/crypto/perlasm/ppc-xlate.pl
index c2a4621f86..fed56e3772 100755
--- a/crypto/perlasm/ppc-xlate.pl
+++ b/crypto/perlasm/ppc-xlate.pl
@@ -66,7 +66,7 @@ my $asciz = sub {
shift;
my $line = join(",",@_);
if ($line =~ /^"(.*)"$/)
- { ".byte " . join(",",unpack("C*",$1),0); }
+ { ".byte " . join(",",unpack("C*",$1),0) . "\n.align 2"; }
else
{ ""; }
};