projects
/
openssl.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
gas -g doesn't tolerate unpadded .bytes in code segment.
[openssl.git]
/
crypto
/
perlasm
/
ppc-xlate.pl
diff --git
a/crypto/perlasm/ppc-xlate.pl
b/crypto/perlasm/ppc-xlate.pl
index c2a4621f868a24c72f36d00248cb35ceed356543..fed56e3772a3fa0a0a2c5b62e6ef57a2ba1c0006 100755
(executable)
--- 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
{ ""; }
};