VirtualBox

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


Ignore:
Timestamp:
Jan 19, 2009 10:30:36 AM (16 years ago)
Author:
vboxsync
Message:

Don't assert for 8 byte stos/movs

File:
1 edited

Legend:

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

    r15996 r16037  
    345345     */
    346346    unsigned cb = DISGetParamSize(pCpu, &pCpu->param1);
    347     AssertMsg(cb > 0 && cb <= sizeof(uint32_t), ("cb=%d\n", cb));
     347    AssertMsg(cb > 0 && cb <= sizeof(uint64_t), ("cb=%d\n", cb));
    348348    int      offIncrement = pRegFrame->eflags.Bits.u1DF ? -(signed)cb : (signed)cb;
    349349
     
    574574     */
    575575    unsigned cb = DISGetParamSize(pCpu, &pCpu->param1);
    576     AssertMsg(cb > 0 && cb <= sizeof(uint32_t), ("cb=%d\n", cb));
     576    AssertMsg(cb > 0 && cb <= sizeof(uint64_t), ("cb=%d\n", cb));
    577577    int      offIncrement = pRegFrame->eflags.Bits.u1DF ? -(signed)cb : (signed)cb;
    578578
Note: See TracChangeset for help on using the changeset viewer.

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