VirtualBox

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


Ignore:
Timestamp:
Apr 17, 2020 4:26:56 PM (5 years ago)
Author:
vboxsync
Message:

VMM: VC++ 14.1 warning fixes. bugref:8489

File:
1 edited

Legend:

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

    r82968 r83771  
    55995599            if (IEM_VMX_IS_ROOT_MODE(pVCpu))
    56005600            {
    5601                 uint32_t const uCr0Fixed0 = pVCpu->cpum.GstCtx.hwvirt.vmx.Msrs.u64Cr0Fixed0;
     5601                uint64_t const uCr0Fixed0 = pVCpu->cpum.GstCtx.hwvirt.vmx.Msrs.u64Cr0Fixed0;
    56025602                if ((uNewCrX & uCr0Fixed0) != uCr0Fixed0)
    56035603                {
     
    56065606                }
    56075607
    5608                 uint32_t const uCr0Fixed1 = pVCpu->cpum.GstCtx.hwvirt.vmx.Msrs.u64Cr0Fixed1;
     5608                uint64_t const uCr0Fixed1 = pVCpu->cpum.GstCtx.hwvirt.vmx.Msrs.u64Cr0Fixed1;
    56095609                if (uNewCrX & ~uCr0Fixed1)
    56105610                {
     
    58095809            if (IEM_VMX_IS_ROOT_MODE(pVCpu))
    58105810            {
    5811                 uint32_t const uCr4Fixed0 = pVCpu->cpum.GstCtx.hwvirt.vmx.Msrs.u64Cr4Fixed0;
     5811                uint64_t const uCr4Fixed0 = pVCpu->cpum.GstCtx.hwvirt.vmx.Msrs.u64Cr4Fixed0;
    58125812                if ((uNewCrX & uCr4Fixed0) != uCr4Fixed0)
    58135813                {
     
    58165816                }
    58175817
    5818                 uint32_t const uCr4Fixed1 = pVCpu->cpum.GstCtx.hwvirt.vmx.Msrs.u64Cr4Fixed1;
     5818                uint64_t const uCr4Fixed1 = pVCpu->cpum.GstCtx.hwvirt.vmx.Msrs.u64Cr4Fixed1;
    58195819                if (uNewCrX & ~uCr4Fixed1)
    58205820                {
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