Index: /trunk/src/VBox/VMM/VMMAll/IEMAllCImplSvmInstr.cpp.h
===================================================================
--- /trunk/src/VBox/VMM/VMMAll/IEMAllCImplSvmInstr.cpp.h	(revision 92545)
+++ /trunk/src/VBox/VMM/VMMAll/IEMAllCImplSvmInstr.cpp.h	(revision 92546)
@@ -313,5 +313,5 @@
             if (fHostInPaeMode)
                 rcStrict = PGMGstMapPaePdpesAtCr3(pVCpu, pHostState->uCr3);
-            if (RT_LIKELY(rcStrict == VINF_SUCCESS))
+            if (RT_SUCCESS(rcStrict))
             {
                 /*
Index: /trunk/src/VBox/VMM/VMMAll/IEMAllCImplVmxInstr.cpp.h
===================================================================
--- /trunk/src/VBox/VMM/VMMAll/IEMAllCImplVmxInstr.cpp.h	(revision 92545)
+++ /trunk/src/VBox/VMM/VMMAll/IEMAllCImplVmxInstr.cpp.h	(revision 92546)
@@ -5645,5 +5645,5 @@
         {
             int const rc = PGMGstMapPaePdpesAtCr3(pVCpu, pVmcs->u64GuestCr3.u);
-            if (rc == VINF_SUCCESS)
+            if (RT_SUCCESS(rc))
                 *pfPdpesMapped = true;
             else
