| 26 | |
| 27 | template<typename MatrixType> void initMatrix_identity(MatrixType& mat) __attribute__((noinline)); |
| 28 | template<typename MatrixType> void initMatrix_identity(MatrixType& mat) |
| 29 | { |
| 30 | mat.setIdentity(); |
| 31 | } |
| 32 | |
| 33 | #ifndef __INTEL_COMPILER |
| 34 | #define DISABLE_SSE_EXCEPTIONS() { \ |
no test coverage detected