forked from I2P_Developers/i2p.i2p
NBI: remove special case for core2/corei in getMiddleName2()
since it's now a fallback in getResourceList()
This commit is contained in:
@ -1015,9 +1015,10 @@ public class NativeBigInteger extends BigInteger {
|
||||
if (sCPUType.equals(JBIGI_OPTIMIZATION_K6_3) && !_isWin)
|
||||
// k62 and k63 identical except on windows
|
||||
sAppend = JBIGI_OPTIMIZATION_K6_2;
|
||||
else if (sCPUType.equals(JBIGI_OPTIMIZATION_COREI) && (!_is64) && ((_isKFreebsd) || (_isNetbsd) || (_isOpenbsd)))
|
||||
// core2 is always a fallback for corei in getResourceList()
|
||||
//else if (sCPUType.equals(JBIGI_OPTIMIZATION_COREI) && (!_is64) && ((_isKFreebsd) || (_isNetbsd) || (_isOpenbsd)))
|
||||
// corei and core2 are identical on 32bit kfreebsd, openbsd, and netbsd
|
||||
sAppend = JBIGI_OPTIMIZATION_CORE2;
|
||||
//sAppend = JBIGI_OPTIMIZATION_CORE2;
|
||||
else if (sCPUType.equals(JBIGI_OPTIMIZATION_PENTIUM2) && _isSunos && _isX86)
|
||||
// pentium2 and pentium3 identical on X86 Solaris
|
||||
sAppend = JBIGI_OPTIMIZATION_PENTIUM3;
|
||||
|
Reference in New Issue
Block a user