blob: 5bb1888abe183a3e04e819714a31293681511b22 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
--- src/VBox/VMM/VMMR3/CPUM.cpp (Revision 71439)
+++ src/VBox/VMM/VMMR3/CPUM.cpp (Revision 71440)
@@ -999,7 +999,8 @@
*/
if (!fHWVirtExEnabled)
{
- Assert(pVM->cpum.s.aGuestCpuIdStd[4].eax == 0);
+ Assert( pVM->cpum.s.aGuestCpuIdStd[4].eax == 0
+ || pVM->cpum.s.aGuestCpuIdStd[0].eax < 0x4);
pVM->cpum.s.aGuestCpuIdStd[4].eax = 0;
}
}
|