VirtualBox

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


Ignore:
Timestamp:
Jul 6, 2020 5:17:00 PM (5 years ago)
Author:
vboxsync
Message:

PGMAllGst.h: Stop using the 'register' keyword as Clang warns in C++11 mode. bugref:9790

File:
1 edited

Legend:

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

    r82968 r85073  
    132132# endif
    133133
    134     uint32_t register fEffective = X86_PTE_RW | X86_PTE_US | X86_PTE_PWT | X86_PTE_PCD | X86_PTE_A | 1;
     134    uint32_t fEffective = X86_PTE_RW | X86_PTE_US | X86_PTE_PWT | X86_PTE_PCD | X86_PTE_A | 1;
    135135    {
    136136# if PGM_GST_TYPE == PGM_TYPE_AMD64
     
    142142        else return PGM_GST_NAME(WalkReturnBadPhysAddr)(pVCpu, pWalk, 4, rc);
    143143
    144         PX86PML4E register  pPml4e;
     144        PX86PML4E pPml4e;
    145145        pWalk->pPml4e  = pPml4e  = &pWalk->pPml4->a[(GCPtr >> X86_PML4_SHIFT) & X86_PML4_MASK];
    146         X86PML4E  register  Pml4e;
     146        X86PML4E  Pml4e;
    147147        pWalk->Pml4e.u = Pml4e.u = pPml4e->u;
    148148
     
    171171    {
    172172# if PGM_GST_TYPE == PGM_TYPE_AMD64 || PGM_GST_TYPE == PGM_TYPE_PAE
    173         PX86PDPE register   pPdpe;
     173        PX86PDPE pPdpe;
    174174        pWalk->pPdpe  = pPdpe  = &pWalk->pPdpt->a[(GCPtr >> GST_PDPT_SHIFT) & GST_PDPT_MASK];
    175         X86PDPE  register   Pdpe;
     175        X86PDPE  Pdpe;
    176176        pWalk->Pdpe.u = Pdpe.u = pPdpe->u;
    177177
     
    204204    }
    205205    {
    206         PGSTPDE register    pPde;
     206        PGSTPDE pPde;
    207207        pWalk->pPde  = pPde  = &pWalk->pPd->a[(GCPtr >> GST_PD_SHIFT) & GST_PD_MASK];
    208         GSTPDE              Pde;
     208        GSTPDE  Pde;
    209209        pWalk->Pde.u = Pde.u = pPde->u;
    210210        if (Pde.n.u1Present) { /* probable */ }
     
    261261    }
    262262    {
    263         PGSTPTE register    pPte;
     263        PGSTPTE pPte;
    264264        pWalk->pPte  = pPte  = &pWalk->pPt->a[(GCPtr >> GST_PT_SHIFT) & GST_PT_MASK];
    265         GSTPTE  register    Pte;
     265        GSTPTE  Pte;
    266266        pWalk->Pte.u = Pte.u = pPte->u;
    267267
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