summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorvboxsync <vboxsync@cfe28804-0f27-0410-a406-dd0f0b0b656f>2023-05-09 08:34:36 +0000
committervboxsync <vboxsync@cfe28804-0f27-0410-a406-dd0f0b0b656f>2023-05-09 08:34:36 +0000
commit9d99160712d0fcb6c5c7f6b13c7a3052a1987d74 (patch)
tree72c6641ab4b88a0fae5f3af31a791c99313fc479 /src
parent6c05158e0eafd9847b03de397bbde2c0b4d2f49e (diff)
downloadVirtualBox-svn-9d99160712d0fcb6c5c7f6b13c7a3052a1987d74.tar.gz
VMM/IEM: scm fix. bugref:10369
git-svn-id: https://www.virtualbox.org/svn/vbox/trunk@99690 cfe28804-0f27-0410-a406-dd0f0b0b656f
Diffstat (limited to 'src')
-rw-r--r--src/VBox/VMM/include/IEMInternal.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/VBox/VMM/include/IEMInternal.h b/src/VBox/VMM/include/IEMInternal.h
index 8173550a1ba..28704d55ffe 100644
--- a/src/VBox/VMM/include/IEMInternal.h
+++ b/src/VBox/VMM/include/IEMInternal.h
@@ -3534,13 +3534,13 @@ typedef VBOXSTRICTRC (* PFNIEMOPRM)(PVMCPUCC pVCpu, uint8_t bRm);
#define IEM_GET_MODRM_RM_8(a_bRm) ( ((a_bRm) & X86_MODRM_RM_MASK) )
/**
- * Combines the prefix REX and ModR/M byte for passing to
+ * Combines the prefix REX and ModR/M byte for passing to
* iemOpHlpCalcRmEffAddrThreadedAddr64().
- *
+ *
* @returns The ModRM byte but with bit 3 set to REX.B and bit 4 to REX.X.
* The two bits are part of the REG sub-field, which isn't needed in
* iemOpHlpCalcRmEffAddrThreadedAddr64().
- *
+ *
* For use during decoding/recompiling.
*/
#define IEM_GET_MODRM_EX(a_pVCpu, a_bRm) \