Index: /trunk/src/VBox/VMM/VMMR0/HMVMXR0.cpp
===================================================================
--- /trunk/src/VBox/VMM/VMMR0/HMVMXR0.cpp	(revision 78481)
+++ /trunk/src/VBox/VMM/VMMR0/HMVMXR0.cpp	(revision 78482)
@@ -12537,8 +12537,6 @@
             AssertReturn(uIOSize <= 3 && uIOSize != 2, VERR_VMX_IPE_1);
 
-            /* Size of the I/O accesses in bytes. */
-            static uint32_t const s_aIOSizes[4] = { 1, 2, 0, 4 };
+            static uint32_t const s_aIOSizes[4] = { 1, 2, 0, 4 };   /* Size of the I/O accesses in bytes. */
             uint8_t const cbAccess = s_aIOSizes[uIOSize];
-
             if (CPUMIsGuestVmxIoInterceptSet(pVCpu, uIOPort, cbAccess))
             {
@@ -14229,7 +14227,7 @@
     if (!pExitRec)
     {
-        /* I/O operation lookup arrays. */
-        static uint32_t const s_aIOSizes[4] = { 1, 2, 0, 4 };                    /* Size of the I/O accesses. */
+        static uint32_t const s_aIOSizes[4] = { 1, 2, 0, 4 };                    /* Size of the I/O accesses in bytes. */
         static uint32_t const s_aIOOpAnd[4] = { 0xff, 0xffff, 0, 0xffffffff };   /* AND masks for saving result in AL/AX/EAX. */
+
         uint32_t const cbValue  = s_aIOSizes[uIOSize];
         uint32_t const cbInstr  = pVmxTransient->cbInstr;
