ppc: atomic is no longer volatile per 077c84eb27

This commit is contained in:
Alexander von Gluck IV 2014-01-19 22:14:28 -06:00
parent 14919567d1
commit 749a60bf39
1 changed files with 1 additions and 1 deletions

View File

@ -316,7 +316,7 @@ PPCVMTranslationMap::~PPCVMTranslationMap()
// mark the vsid base not in use
int baseBit = fVSIDBase >> VSID_BASE_SHIFT;
atomic_and((vint32 *)&sVSIDBaseBitmap[baseBit / 32],
atomic_and((int32 *)&sVSIDBaseBitmap[baseBit / 32],
~(1 << (baseBit % 32)));
}