diff options
author | Andy Polyakov <appro@openssl.org> | 2009-04-26 19:49:41 +0200 |
---|---|---|
committer | Andy Polyakov <appro@openssl.org> | 2009-04-26 19:49:41 +0200 |
commit | e303f55fc7dcfce113d71e0ab9652c69fb1ec36d (patch) | |
tree | 3654d399cf52ae56e78a6d7efcfe59cff884d5df /crypto/perlasm/x86gas.pl | |
parent | Add local symbol hacks for OpenVMS (diff) | |
download | openssl-e303f55fc7dcfce113d71e0ab9652c69fb1ec36d.tar.xz openssl-e303f55fc7dcfce113d71e0ab9652c69fb1ec36d.zip |
Expand OPENSS_ia32cap to 64 bits.
Diffstat (limited to 'crypto/perlasm/x86gas.pl')
-rw-r--r-- | crypto/perlasm/x86gas.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/perlasm/x86gas.pl b/crypto/perlasm/x86gas.pl index 6eab727fd4..b470507730 100644 --- a/crypto/perlasm/x86gas.pl +++ b/crypto/perlasm/x86gas.pl @@ -150,7 +150,7 @@ sub ::public_label sub ::file_end { if (grep {/\b${nmdecor}OPENSSL_ia32cap_P\b/i} @out) { - my $tmp=".comm\t${nmdecor}OPENSSL_ia32cap_P,4"; + my $tmp=".comm\t${nmdecor}OPENSSL_ia32cap_P,8"; if ($::elf) { push (@out,"$tmp,4\n"); } else { push (@out,"$tmp\n"); } } |