VirtualBox

Changeset 13193 in vbox for trunk/src/VBox/VMM/VMMAll


Ignore:
Timestamp:
Oct 13, 2008 6:30:04 AM (16 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
37734
Message:

uint64_t conversion fix

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/VMM/VMMAll/EMAll.cpp

    r13161 r13193  
    26422642        return VERR_EM_INTERPRETER; /* not supported */
    26432643
    2644     val = (uint64_t)pRegFrame->eax | ((uint64_t)pRegFrame->edx << 32ULL);
     2644    val = RT_MAKE_U64(pRegFrame->eax, pRegFrame->edx);
    26452645    Log(("EMInterpretWrmsr %s (%x) val=%VX64\n", emMSRtoString(pRegFrame->ecx), pRegFrame->ecx, val));
    26462646    switch (pRegFrame->ecx)
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette