From dc8adc3b48bb2201f2bd796a5ffa0733c30aa6e1 Mon Sep 17 00:00:00 2001 From: s_nakamoto Date: Mon, 4 Oct 2010 01:40:50 +0000 Subject: Russian translation by eurekafag git-svn-id: https://bitcoin.svn.sourceforge.net/svnroot/bitcoin/trunk@160 1a98c847-1fd6-4fd8-948a-caf3550aa51b --- main.cpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'main.cpp') diff --git a/main.cpp b/main.cpp index a70dd7cc1e..dd13bb7f11 100644 --- a/main.cpp +++ b/main.cpp @@ -2831,6 +2831,10 @@ bool Detect128BitSSE2() bool fUseSSE2 = ((fIntel && nFamily * 10000 + nModel >= 60026) || (fAMD && nFamily * 10000 + nModel >= 160010)); + // AMD reports a lower model number in 64-bit mode + if (fAMD && sizeof(void*) > 4 && nFamily * 10000 + nModel >= 160000) + fUseSSE2 = true; + static bool fPrinted; if (!fPrinted) { -- cgit v1.2.3