VirtualBox

Changeset 41703 in vbox for trunk/src/VBox/Disassembler


Ignore:
Timestamp:
Jun 14, 2012 11:07:19 AM (13 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
78511
Message:

Disasm.cpp: Build fix?

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Disassembler/DisasmCore.cpp

    r41693 r41703  
    23312331    {
    23322332    case OP_PARM_b:
    2333         Assert(idx < (pCpu->prefix & DISPREFIX_REX ? 16 : 8));
     2333        Assert(idx < (pCpu->prefix & DISPREFIX_REX ? 16U : 8U));
    23342334
    23352335        /* AH, BH, CH & DH map to DIL, SIL, EBL & SPL when a rex prefix is present. */
     
    23472347
    23482348    case OP_PARM_w:
    2349         Assert(idx < (pCpu->prefix & DISPREFIX_REX ? 16 : 8));
     2349        Assert(idx < (pCpu->prefix & DISPREFIX_REX ? 16U : 8U));
    23502350
    23512351        pParam->fUse |= DISUSE_REG_GEN16;
     
    23542354
    23552355    case OP_PARM_d:
    2356         Assert(idx < (pCpu->prefix & DISPREFIX_REX ? 16 : 8));
     2356        Assert(idx < (pCpu->prefix & DISPREFIX_REX ? 16U : 8U));
    23572357
    23582358        pParam->fUse |= DISUSE_REG_GEN32;
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