Skip to content

Commit eae8865

Browse files
committed
Address cpp-docs 4356
1 parent 8c650f2 commit eae8865

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

docs/intrinsics/mm-stream-ss.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
---
22
description: "Learn more about: _mm_stream_ss"
33
title: "_mm_stream_ss"
4-
ms.date: "09/02/2019"
4+
ms.date: 01/04/2023
55
f1_keywords: ["_mm_stream_ss"]
66
helpviewer_keywords: ["movntss instruction", "_mm_stream_ss intrinsic"]
77
ms.assetid: c53dffe9-0dfe-4063-85d3-e8987b870fce
88
---
9-
# _mm_stream_ss
9+
# `_mm_stream_ss`
1010

1111
**Microsoft Specific**
1212

@@ -35,9 +35,9 @@ None.
3535

3636
## Requirements
3737

38-
|Intrinsic|Architecture|
39-
|---------------|------------------|
40-
|`_mm_stream_ss`|SSE4a|
38+
| Intrinsic | Architecture |
39+
|---|---|
40+
| `_mm_stream_ss` | SSE4a |
4141

4242
**Header file** \<intrin.h>
4343

@@ -70,7 +70,7 @@ int main()
7070
vals.m128_f32[3] = 3.;
7171
_mm_stream_ss(&f[3], vals);
7272
cout << "f[0] = " << f[0] << ", f[1] = " << f[1] << endl;
73-
cout << "f[1] = " << f[1] << ", f[3] = " << f[3] << endl;
73+
cout << "f[2] = " << f[2] << ", f[3] = " << f[3] << endl;
7474
}
7575
```
7676

@@ -85,8 +85,8 @@ Portions Copyright 2007 by Advanced Micro Devices, Inc. All rights reserved. Rep
8585

8686
## See also
8787

88-
[_mm_stream_sd](../intrinsics/mm-stream-sd.md)\
89-
[_mm_stream_ps](https://www.intel.com/content/www/us/en/docs/intrinsics-guide/index.html#text=_mm_stream_ps)\
90-
[_mm_store_ss](https://www.intel.com/content/www/us/en/docs/intrinsics-guide/index.html#text=_mm_store_ss)\
91-
[_mm_sfence](https://www.intel.com/content/www/us/en/docs/intrinsics-guide/index.html#text=_mm_sfence)\
88+
[`_mm_stream_sd`](../intrinsics/mm-stream-sd.md)\
89+
[`_mm_stream_ps`](https://www.intel.com/content/www/us/en/docs/intrinsics-guide/index.html#text=_mm_stream_ps)\
90+
[`_mm_store_ss`](https://www.intel.com/content/www/us/en/docs/intrinsics-guide/index.html#text=_mm_store_ss)\
91+
[`_mm_sfence`](https://www.intel.com/content/www/us/en/docs/intrinsics-guide/index.html#text=_mm_sfence)\
9292
[Compiler intrinsics](../intrinsics/compiler-intrinsics.md)

0 commit comments

Comments
 (0)