projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
96b0f6c
)
gas -g doesn't tolerate unpadded .bytes in code segment.
author
Andy Polyakov
<appro@openssl.org>
Fri, 13 Jul 2007 21:35:56 +0000
(21:35 +0000)
committer
Andy Polyakov
<appro@openssl.org>
Fri, 13 Jul 2007 21:35:56 +0000
(21:35 +0000)
crypto/perlasm/ppc-xlate.pl
patch
|
blob
|
history
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
{ ""; }
};