Skip to content

Commit 2542adc

Browse files
author
Colin Robertson
authored
Merge pull request MicrosoftDocs#3044 from softmac/patch-1
fix __movsq argument types
2 parents 16cc24a + b4f2d75 commit 2542adc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/intrinsics/movsq.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ Generates a repeated Move String (`rep movsq`) instruction.
1616

1717
```C
1818
void __movsq(
19-
unsigned char* Destination,
20-
unsigned char* Source,
19+
unsigned long long* Destination,
20+
unsigned long long const* Source,
2121
size_t Count
2222
);
2323
```

0 commit comments

Comments
 (0)