Skip to content

Commit da08769

Browse files
Update arm64-intrinsics.md to include intrin.h mention (#5028)
* Update arm64-intrinsics.md to include intrin.h mention Some intrinsics, such as `__prefetch` come from `intrin.h` header file. * Update arm64-intrinsics.md tech review feedback * Update arm64-intrinsics.md tech review --------- Co-authored-by: Tyler Whitney <[email protected]>
1 parent 86981db commit da08769

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

docs/intrinsics/arm64-intrinsics.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,12 @@ The Microsoft C++ compiler (MSVC) makes the following intrinsics available on th
1515

1616
The NEON vector instruction set extensions for ARM64 provide Single Instruction Multiple Data (SIMD) capabilities. They resemble the ones in the MMX and SSE vector instruction sets that are common to x86 and x64 architecture processors.
1717

18-
NEON intrinsics are supported, as provided in the header file *arm64_neon.h*. The MSVC support for NEON intrinsics resembles that of the ARM64 compiler, which is documented in the [ARM NEON Intrinsic Reference](https://developer.arm.com/architectures/instruction-sets/simd-isas/neon/intrinsics) on the ARM Infocenter website.
18+
NEON intrinsics are supported, as provided in the header file `arm64_neon.h`. The MSVC support for NEON intrinsics resembles that of the ARM64 compiler, which is documented in the [ARM NEON Intrinsic Reference](https://developer.arm.com/architectures/instruction-sets/simd-isas/neon/intrinsics) on the ARM Infocenter website.
1919

2020
## <a name="A"></a> ARM64-specific intrinsics listing
2121

22+
ARM64-specific intrinsics are supported, as provided in the header file `intrin.h`.
23+
2224
|Function Name|Instruction|Function Prototype|
2325
|-------------------|-----------------|------------------------|
2426
|__break|BRK|void __break(int)|

0 commit comments

Comments
 (0)