summaryrefslogtreecommitdiffstats
path: root/crypto/perlasm
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2013-12-18 21:19:08 +0100
committerAndy Polyakov <appro@openssl.org>2013-12-18 21:19:08 +0100
commit128e1d101b0a77a1c5f713f1568d6ecfd4d4b9d2 (patch)
tree9436aeedd946816a6652bac4d7ca195def2810d6 /crypto/perlasm
parented496b3d42e908e9edee0da7585e25d0e2075910 (diff)
PPC assembly pack: improve AIX support (enable vpaes-ppc).
Diffstat (limited to 'crypto/perlasm')
-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 89f749f667..a67eef57d5 100755
--- a/crypto/perlasm/ppc-xlate.pl
+++ b/crypto/perlasm/ppc-xlate.pl
@@ -50,7 +50,7 @@ my $globl = sub {
$ret;
};
my $text = sub {
- my $ret = ($flavour =~ /aix/) ? ".csect" : ".text";
+ my $ret = ($flavour =~ /aix/) ? ".csect\t.text[PR],7" : ".text";
$ret = ".abiversion 2\n".$ret if ($flavour =~ /linux.*64le/);
$ret;
};