Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Microsoft Specific
Reads from the sixth-least significant control register bit.
_MM_GET_EXCEPTION_STATE( )
Example
The following example tests for a divide by zero exception.
if (_MM_GET_EXCEPTION_STATE(x) & _MM_EXCEPT_DIV_ZERO) {
/* Exception has occurred */
}
The header file xmmintrin.h contains the declarations for the SSE intrinsics.
END Microsoft Specific