- Timestamp:
- Jun 26, 2014 9:33:46 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/CPUMR3CpuId.cpp
r51728 r51735 534 534 * @param pLegacy The legacy output leaf. 535 535 */ 536 bool cpumR3CpuIdGetLeafLegacy(PCPUMCPUIDLEAF paLeaves, uint32_t cLeaves, uint32_t uLeaf, uint32_t uSubLeaf, PCPUMCPUID pLe agcy)536 bool cpumR3CpuIdGetLeafLegacy(PCPUMCPUIDLEAF paLeaves, uint32_t cLeaves, uint32_t uLeaf, uint32_t uSubLeaf, PCPUMCPUID pLegacy) 537 537 { 538 538 PCPUMCPUIDLEAF pLeaf = cpumR3CpuIdGetLeaf(paLeaves, cLeaves, uLeaf, uSubLeaf); 539 539 if (pLeaf) 540 540 { 541 pLe agcy->eax = pLeaf->uEax;542 pLe agcy->ebx = pLeaf->uEbx;543 pLe agcy->ecx = pLeaf->uEcx;544 pLe agcy->edx = pLeaf->uEdx;541 pLegacy->eax = pLeaf->uEax; 542 pLegacy->ebx = pLeaf->uEbx; 543 pLegacy->ecx = pLeaf->uEcx; 544 pLegacy->edx = pLeaf->uEdx; 545 545 return true; 546 546 } … … 967 967 return cpumR3CpuIdInsert(pVM, NULL /* ppaLeaves */, NULL /* pcLeaves */, pNewLeaf); 968 968 } 969 970 969 971 970 /**
Note:
See TracChangeset
for help on using the changeset viewer.