Index: /trunk/src/VBox/VMM/VMMR3/HM.cpp
===================================================================
--- /trunk/src/VBox/VMM/VMMR3/HM.cpp	(revision 65313)
+++ /trunk/src/VBox/VMM/VMMR3/HM.cpp	(revision 65314)
@@ -1143,6 +1143,5 @@
      * (Main should have taken care of this already)
      */
-    pVM->hm.s.fHasIoApic = PDMHasIoApic(pVM);
-    if (!pVM->hm.s.fHasIoApic)
+    if (!PDMHasIoApic(pVM))
     {
         Assert(!pVM->hm.s.fTprPatchingAllowed); /* paranoia */
Index: /trunk/src/VBox/VMM/include/HMInternal.h
===================================================================
--- /trunk/src/VBox/VMM/include/HMInternal.h	(revision 65313)
+++ /trunk/src/VBox/VMM/include/HMInternal.h	(revision 65314)
@@ -398,6 +398,4 @@
     /** Set if we can support 64-bit guests or not. */
     bool                        fAllow64BitGuests;
-    /** Set if an IO-APIC is configured for this VM. */
-    bool                        fHasIoApic;
     /** Set when TPR patching is allowed. */
     bool                        fTprPatchingAllowed;
@@ -413,4 +411,6 @@
     /** Set if posted interrupt processing is enabled. */
     bool                        fPostedIntrs;
+    /** Alignment. */
+    bool                        fAlignment0;
 
     /** Host kernel flags that HM might need to know (SUPKERNELFEATURES_XXX). */
