summaryrefslogtreecommitdiff
path: root/src/VBox/VMM/VMMR3/EMR3Nem.cpp
diff options
context:
space:
mode:
authorvboxsync <vboxsync@cfe28804-0f27-0410-a406-dd0f0b0b656f>2018-10-12 11:24:11 +0000
committervboxsync <vboxsync@cfe28804-0f27-0410-a406-dd0f0b0b656f>2018-10-12 11:24:11 +0000
commit1641bf997869bdef0158a491a9dcd1123e604663 (patch)
tree1162e20a9606afaa0c3b5d12123e62593b21ddb3 /src/VBox/VMM/VMMR3/EMR3Nem.cpp
parent5d02b5e89369d7202a8073c44fe3b52f4e718be1 (diff)
downloadVirtualBox-svn-1641bf997869bdef0158a491a9dcd1123e604663.tar.gz
vm.h,EM: Made the FF_SET and FF_CLEAR macros only take constants with _BIT variants. bugref:9180
git-svn-id: https://www.virtualbox.org/svn/vbox/trunk@74795 cfe28804-0f27-0410-a406-dd0f0b0b656f
Diffstat (limited to 'src/VBox/VMM/VMMR3/EMR3Nem.cpp')
-rw-r--r--src/VBox/VMM/VMMR3/EMR3Nem.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/VBox/VMM/VMMR3/EMR3Nem.cpp b/src/VBox/VMM/VMMR3/EMR3Nem.cpp
index df6df03d4a2..e6c6e2d80ad 100644
--- a/src/VBox/VMM/VMMR3/EMR3Nem.cpp
+++ b/src/VBox/VMM/VMMR3/EMR3Nem.cpp
@@ -117,7 +117,7 @@ VBOXSTRICTRC emR3NemSingleInstruction(PVM pVM, PVMCPU pVCpu, uint32_t fFlags)
* Handle high priority FFs and informational status codes. We don't do
* normal FF processing the caller or the next call can deal with them.
*/
- VMCPU_FF_CLEAR(pVCpu, VMCPU_FF_RESUME_GUEST_MASK);
+ VMCPU_FF_CLEAR_MASK(pVCpu, VMCPU_FF_RESUME_GUEST_MASK);
if ( VM_FF_IS_ANY_SET(pVM, VM_FF_HIGH_PRIORITY_POST_MASK)
|| VMCPU_FF_IS_ANY_SET(pVCpu, VMCPU_FF_HIGH_PRIORITY_POST_MASK))
{
@@ -446,7 +446,7 @@ VBOXSTRICTRC emR3NemExecute(PVM pVM, PVMCPU pVCpu, bool *pfFFDone)
/*
* Deal with high priority post execution FFs before doing anything else.
*/
- VMCPU_FF_CLEAR(pVCpu, VMCPU_FF_RESUME_GUEST_MASK);
+ VMCPU_FF_CLEAR_MASK(pVCpu, VMCPU_FF_RESUME_GUEST_MASK);
if ( VM_FF_IS_ANY_SET(pVM, VM_FF_HIGH_PRIORITY_POST_MASK)
|| VMCPU_FF_IS_ANY_SET(pVCpu, VMCPU_FF_HIGH_PRIORITY_POST_MASK))
rcStrict = emR3HighPriorityPostForcedActions(pVM, pVCpu, rcStrict);