Skip to content

Commit 821e1cf

Browse files
authored
Fix yet another blind rename of ARM64 for Arm64 (and a typo) (#3757)
1 parent 8d0a7f9 commit 821e1cf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

landing/arm-docs/arm64ec-abi.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -723,7 +723,7 @@ To generate Arm64EC dynamic code, the process is mostly the same with only two d
723723

724724
- When allocating the memory, use newer `VirtualAlloc2` (instead of `VirtualAlloc` or `VirtualAllocEx`) and provide the `MEM_EXTENDED_PARAMETER_EC_CODE` attribute.
725725
- When adding function entries:
726-
- They must be in Arm64 format. When compiling Arm64EC code, the `RUNTIME_FUNCTION` type will match the x64 format. For Arm64 format when compiling Am64EC, use the `ARM64_RUNTIME_FUNCTION` type instead.
726+
- They must be in Arm64 format. When compiling Arm64EC code, the `RUNTIME_FUNCTION` type will match the x64 format. For Arm64 format when compiling Arm64EC, use the `ARM64_RUNTIME_FUNCTION` type instead.
727727
- Do not use the older `RtlAddFunctionTable` API. Always use the newer `RtlAddGrowableFunctionTable` API instead.
728728

729729
Below is an example of memory allocation:
@@ -750,7 +750,7 @@ Below is an example of memory allocation:
750750
And an example of adding one unwind function entry:
751751
752752
```cpp
753-
Arm64_RUNTIME_FUNCTION FunctionTable[1];
753+
ARM64_RUNTIME_FUNCTION FunctionTable[1];
754754
755755
FunctionTable[0].BeginAddress = 0;
756756
FunctionTable[0].Flags = PdataPackedUnwindFunction;

0 commit comments

Comments
 (0)