Changeset 53391 in vbox for trunk/src/VBox/VMM
- Timestamp:
- Nov 24, 2014 6:09:36 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/CPUM.cpp
r53202 r53391 4289 4289 { 4290 4290 pHyperLeafGst = cpumR3CpuIdGetLeaf(pVM->cpum.s.GuestInfo.paCpuIdLeavesR3, pVM->cpum.s.GuestInfo.cCpuIdLeaves, 4291 4291 uHyperLeaf, 0 /* uSubLeaf */); 4292 4292 } 4293 4293 … … 4297 4297 4298 4298 CPUMCPUIDLEAF GuestLeaf; 4299 uint32_t const cHyperGstMax = pHyperLeafGst ->uEax;4299 uint32_t const cHyperGstMax = pHyperLeafGst ? pHyperLeafGst->uEax : 0; 4300 4300 uint32_t const cHyperHstMax = Host.eax; 4301 4301 uint32_t const cHyperMax = RT_MAX(cHyperHstMax, cHyperGstMax);
Note:
See TracChangeset
for help on using the changeset viewer.