VirtualBox

Changeset 62044 in vbox for trunk


Ignore:
Timestamp:
Jul 6, 2016 11:03:09 AM (9 years ago)
Author:
vboxsync
Message:

Make old compilers happy.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/VMM/VMMR0/HMVMXR0.cpp

    r62040 r62044  
    48434843    do
    48444844    {
    4845         if (pMixedCtx->gdtr.pGdt & 0xffffffff00000000)
     4845        if (pMixedCtx->gdtr.pGdt & UINT64_C(0xffffffff00000000))
    48464846            break;
    4847         if (pMixedCtx->idtr.pIdt & 0xffffffff00000000)
     4847        if (pMixedCtx->idtr.pIdt & UINT64_C(0xffffffff00000000))
    48484848            break;
    4849         if (pMixedCtx->ldtr.u64Base & 0xffffffff00000000)
     4849        if (pMixedCtx->ldtr.u64Base & UINT64_C(0xffffffff00000000))
    48504850            break;
    4851         if (pMixedCtx->tr.u64Base & 0xffffffff00000000)
     4851        if (pMixedCtx->tr.u64Base & UINT64_C(0xffffffff00000000))
    48524852            break;
    4853         if (pMixedCtx->tr.u64Base & 0xffffffff00000000)
     4853        if (pMixedCtx->tr.u64Base & UINT64_C(0xffffffff00000000))
    48544854            break;
    4855         if (pMixedCtx->es.u64Base & 0xffffffff00000000)
     4855        if (pMixedCtx->es.u64Base & UINT64_C(0xffffffff00000000))
    48564856            break;
    4857         if (pMixedCtx->cs.u64Base & 0xffffffff00000000)
     4857        if (pMixedCtx->cs.u64Base & UINT64_C(0xffffffff00000000))
    48584858            break;
    4859         if (pMixedCtx->ss.u64Base & 0xffffffff00000000)
     4859        if (pMixedCtx->ss.u64Base & UINT64_C(0xffffffff00000000))
    48604860            break;
    4861         if (pMixedCtx->ds.u64Base & 0xffffffff00000000)
     4861        if (pMixedCtx->ds.u64Base & UINT64_C(0xffffffff00000000))
    48624862            break;
    4863         if (pMixedCtx->fs.u64Base & 0xffffffff00000000)
     4863        if (pMixedCtx->fs.u64Base & UINT64_C(0xffffffff00000000))
    48644864            break;
    4865         if (pMixedCtx->gs.u64Base & 0xffffffff00000000)
     4865        if (pMixedCtx->gs.u64Base & UINT64_C(0xffffffff00000000))
    48664866            break;
    48674867        /* All good, bases are 32-bit. */
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