Skip to content

Commit b4f2d75

Browse files
authored
fix __movsq argument types
correct the function argument types to match the actual definitions in intrin.h. The data types have to be __int64 or long long, not char as is currently shown.
1 parent a75f4aa commit b4f2d75

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)