actually use the 64 bit cpu detection

This commit is contained in:
zzz
2011-06-10 23:24:54 +00:00
parent 6317418028
commit dba92b0c42
3 changed files with 2 additions and 12 deletions

View File

@ -179,17 +179,6 @@ public class NativeBigInteger extends BigInteger {
* @return A string containing the CPU-type or null if CPU type is unknown
*/
private static String resolveCPUType() {
if (_is64) {
// Test the 64 bit libjcpuid, even though we don't use it yet
try {
CPUInfo c = CPUID.getInfo();
_cpuModel = c.getCPUModelString();
} catch (UnknownCPUException e) {
// log?
}
return JBIGI_OPTIMIZATION_ATHLON64;
}
try {
CPUInfo c = CPUID.getInfo();
try {