I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit f3b2eb69 authored by dev's avatar dev
Browse files

Fixed syntax error

parent 168d688f
No related branches found
No related tags found
No related merge requests found
...@@ -156,6 +156,7 @@ class IntelInfoImpl extends CPUIDCPUInfo implements IntelCPUInfo ...@@ -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 ...@@ -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 ...@@ -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 ...@@ -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;
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment