Skip to content

Commit 66e95b3

Browse files
authored
Merge pull request #5845 from MicrosoftDocs/FromPublicMasterBranch
Confirm merge from FromPublicMasterBranch to main to sync with https://github.com/MicrosoftDocs/cpp-docs (branch main)
2 parents e33672e + ca34523 commit 66e95b3

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

docs/cpp/m64.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
---
2-
description: "Learn more about: __m64"
32
title: "__m64"
3+
description: "Learn more about: __m64"
44
ms.date: "11/04/2016"
55
f1_keywords: ["__m64_cpp"]
66
helpviewer_keywords: ["__m64 keyword [C++]"]
7-
ms.assetid: df0410e8-67c9-4954-88c8-fe2653575252
87
---
9-
# __m64
8+
# `__m64`
109

1110
**Microsoft Specific**
1211

@@ -15,24 +14,25 @@ The **`__m64`** data type is for use with the MMX and 3DNow! intrinsics, and is
1514
```cpp
1615
// data_types__m64.cpp
1716
#include <xmmintrin.h>
17+
1818
int main()
1919
{
20-
__m64 x;
20+
__m64 x;
2121
}
2222
```
2323

2424
## Remarks
2525

2626
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.
2727

28-
Variables of type **_m64** are automatically aligned on 8-byte boundaries.
28+
Variables of type **`__m64`** are automatically aligned on 8-byte boundaries.
2929

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.
3131

3232
**END Microsoft Specific**
3333

3434
## See also
3535

36-
[Keywords](../cpp/keywords-cpp.md)<br/>
37-
[Built-in types](../cpp/fundamental-types-cpp.md)<br/>
38-
[Data Type Ranges](../cpp/data-type-ranges.md)
36+
[Keywords](keywords-cpp.md)\
37+
[Built-in types](fundamental-types-cpp.md)\
38+
[Data Type Ranges](data-type-ranges.md)

0 commit comments

Comments
 (0)