mirror of
https://github.com/ElementsProject/elements.git
synced 2026-08-17 13:07:54 +02:00
Russian translation by eurekafag
git-svn-id: https://bitcoin.svn.sourceforge.net/svnroot/bitcoin/trunk@160 1a98c847-1fd6-4fd8-948a-caf3550aa51b
This commit is contained in:
parent
178152f604
commit
dc8adc3b48
3 changed files with 849 additions and 0 deletions
4
main.cpp
4
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)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue