| * This file has no copyright assigned and is placed in the Public Domain. |
| * This file is part of the mingw-w64 runtime package. |
| * No warranty is given; refer to the file DISCLAIMER.PD within this package. |
| #error This file is only supported in C++ compilations! |
| #pragma pack(push,_CRT_PACKING) |
| #if defined(_ENABLE_VEC_DEBUG) |
| #define _MM_QW (*((__int64*)&vec)) |
| M64(__m64 mm) { vec = mm; } |
| M64(__int64 mm) { _MM_QW = mm; } |
| M64(int i) { vec = _m_from_int(i); } |
| operator __m64() const { return vec; } |
| M64& operator&=(const M64 &a) { return *this = (M64) _m_pand(vec,a); } |
| M64& operator|=(const M64 &a) { return *this = (M64) _m_por(vec,a); } |
| M64& operator^=(const M64 &a) { return *this = (M64) _m_pxor(vec,a); } |
| #endif /* ifdef __SSE__ */ |