Changeset 42778 in vbox for trunk/src/VBox/VMM/include
- Timestamp:
- Aug 11, 2012 10:47:03 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/include/IEMInternal.h
r42777 r42778 480 480 #endif 481 481 482 /** 483 * Tests if full verification mode is enabled. 484 * 485 * This expands to @c false when IEM_VERIFICATION_MODE is not defined and 486 * should therefore cause the compiler to eliminate the verification branch 487 * of an if statement. */ 488 #ifdef IEM_VERIFICATION_MODE_FULL 489 # define IEM_FULL_VERIFICATION_ENABLED(a_pIemCpu) (!(a_pIemCpu)->fNoRem) 490 #else 491 # define IEM_FULL_VERIFICATION_ENABLED(a_pIemCpu) (false) 492 #endif 493 482 494 /** @def IEM_VERIFICATION_MODE 483 495 * Indicates that one of the verfication modes are enabled.
Note:
See TracChangeset
for help on using the changeset viewer.