You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -15,24 +14,25 @@ The **`__m64`** data type is for use with the MMX and 3DNow! intrinsics, and is
15
14
```cpp
16
15
// data_types__m64.cpp
17
16
#include<xmmintrin.h>
17
+
18
18
intmain()
19
19
{
20
-
__m64 x;
20
+
__m64 x;
21
21
}
22
22
```
23
23
24
24
## Remarks
25
25
26
26
You should not access the **`__m64`** fields directly. You can, however, see these types in the debugger. A variable of type **`__m64`** maps to the MM[0-7] registers.
27
27
28
-
Variables of type **_m64** are automatically aligned on 8-byte boundaries.
28
+
Variables of type **`__m64`** are automatically aligned on 8-byte boundaries.
29
29
30
-
The **`__m64`** data type is not supported on x64 processors. Applications that use __m64 as part of MMX intrinsics must be rewritten to use equivalent SSE and SSE2 intrinsics.
30
+
The **`__m64`** data type is not supported on x64 processors. Applications that use **`__m64`** as part of MMX intrinsics must be rewritten to use equivalent SSE and SSE2 intrinsics.
0 commit comments