forked from I2P_Developers/i2p.i2p
Fixed syntax error
This commit is contained in:
@ -156,6 +156,7 @@ class IntelInfoImpl extends CPUIDCPUInfo implements IntelCPUInfo
|
|||||||
isPentiumMCompatible = true;
|
isPentiumMCompatible = true;
|
||||||
isCore2Compatible = true;
|
isCore2Compatible = true;
|
||||||
isX64 = true;
|
isX64 = true;
|
||||||
|
}
|
||||||
if (extmodel >= 2) {
|
if (extmodel >= 2) {
|
||||||
isCoreiCompatible = true;
|
isCoreiCompatible = true;
|
||||||
}
|
}
|
||||||
@ -343,6 +344,12 @@ class IntelInfoImpl extends CPUIDCPUInfo implements IntelCPUInfo
|
|||||||
case 0x3e:
|
case 0x3e:
|
||||||
modelString = "Xeon Ivy Bridge (22nm)";
|
modelString = "Xeon Ivy Bridge (22nm)";
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
|
||||||
|
// following are for extended model == 4
|
||||||
|
// most flags are set above
|
||||||
|
// isCoreiCompatible = true is the default
|
||||||
|
|
||||||
// Atom Silvermont / Bay Trail / Avoton 22 nm
|
// Atom Silvermont / Bay Trail / Avoton 22 nm
|
||||||
// Supports SSE 4.2
|
// Supports SSE 4.2
|
||||||
case 0x4d:
|
case 0x4d:
|
||||||
@ -359,12 +366,10 @@ class IntelInfoImpl extends CPUIDCPUInfo implements IntelCPUInfo
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case 7: {
|
case 7: {
|
||||||
// Flags TODO
|
|
||||||
modelString = "Intel Itanium model " + model;
|
modelString = "Intel Itanium model " + model;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
// 15 + 0
|
|
||||||
case 15: {
|
case 15: {
|
||||||
isPentiumCompatible = true;
|
isPentiumCompatible = true;
|
||||||
isPentiumMMXCompatible = true;
|
isPentiumMMXCompatible = true;
|
||||||
@ -397,9 +402,7 @@ class IntelInfoImpl extends CPUIDCPUInfo implements IntelCPUInfo
|
|||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
// 15 + 1
|
|
||||||
case 16: {
|
case 16: {
|
||||||
// Flags TODO
|
|
||||||
modelString = "Intel Itanium II model " + model;
|
modelString = "Intel Itanium II model " + model;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user