diff options
author | Andy Polyakov <appro@openssl.org> | 2011-11-05 11:44:12 +0100 |
---|---|---|
committer | Andy Polyakov <appro@openssl.org> | 2011-11-05 11:44:12 +0100 |
commit | e879dd4386541cb04fa93452412c42ccbffbf334 (patch) | |
tree | cb9dd87b45ba9572772e8d100198af3618bde4ae /crypto/x86cpuid.pl | |
parent | ppc.pl: fix bug in bn_mul_comba4. (diff) | |
download | openssl-e879dd4386541cb04fa93452412c42ccbffbf334.tar.xz openssl-e879dd4386541cb04fa93452412c42ccbffbf334.zip |
x86cpuid.pl: don't punish "last-year" OSes on "this-year" CPUs.
PR: 2633
Diffstat (limited to 'crypto/x86cpuid.pl')
-rw-r--r-- | crypto/x86cpuid.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/x86cpuid.pl b/crypto/x86cpuid.pl index 6595ff35fc..168e4fa0a9 100644 --- a/crypto/x86cpuid.pl +++ b/crypto/x86cpuid.pl @@ -122,7 +122,7 @@ for (@ARGV) { $sse2=1 if (/-DOPENSSL_IA32_SSE2/); } &bt ("ecx",26); # check XSAVE bit &jnc (&label("done")); &bt ("ecx",27); # check OSXSAVE bit - &jnc (&label("clear_xmm")); + &jnc (&label("clear_avx")); &xor ("ecx","ecx"); &data_byte(0x0f,0x01,0xd0); # xgetbv &and ("eax",6); |