Skip to content

Commit 80545f4

Browse files
authored
Add ARM and ARM64 to supported arch for __nop
According to CRT header file intrin.h, `__nop` is also supported on ARM and ARM64.
1 parent b5a1e7f commit 80545f4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/intrinsics/nop.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,17 +21,17 @@ void __nop();
2121

2222
|Intrinsic|Architecture|
2323
|---------------|------------------|
24-
|`__nop`|x86, x64|
24+
|`__nop`|x86, ARM, x64, ARM64|
2525

2626
**Header file** \<intrin.h>
2727

2828
**END Microsoft Specific**
2929

3030
## Remarks
3131

32-
The `__nop` function is equivalent to the `NOP` machine instruction. For more information, search for the document, "Intel Architecture Software Developer's Manual, Volume 2: Instruction Set Reference," at the [Intel Corporation](https://software.intel.com/articles/intel-sdm) site.
32+
The `__nop` function is equivalent to the `NOP` machine instruction. For more information on x86 and x64, search for the document, "Intel Architecture Software Developer's Manual, Volume 2: Instruction Set Reference," at the [Intel Corporation](https://software.intel.com/articles/intel-sdm) site.
3333

3434
## See Also
3535

3636
[Compiler Intrinsics](../intrinsics/compiler-intrinsics.md)<br/>
37-
[__noop](../intrinsics/noop.md)
37+
[__noop](../intrinsics/noop.md)

0 commit comments

Comments
 (0)