Skip to content
Snippets Groups Projects
Commit 8760fa60 authored by Niels Möller's avatar Niels Möller
Browse files

Updated some memxor comments.

parent 0beeff9c
No related branches found
No related tags found
No related merge requests found
......@@ -39,7 +39,7 @@ define(<TNC>, <r12>)
.text
.arm
C memxor(uint8_t *dst, const uint8_t *src, size_t n)
C memxor(void *dst, const void *src, size_t n)
.align 4
PROLOGUE(nettle_memxor)
cmp N, #0
......@@ -229,7 +229,7 @@ define(<ATNC>, <r10>)
define(<BCNT>, <r11>)
define(<BTNC>, <r12>)
C memxor3(uint8_t *dst, const uint8_t *a, const uint8_t *b, size_t n)
C memxor3(void *dst, const void *a, const void *b, size_t n)
.align 2
PROLOGUE(nettle_memxor3)
cmp N, #0
......
......@@ -34,7 +34,7 @@ define(<USE_SSE2>, <no>)
.text
C memxor(uint8_t *dst, const uint8_t *src, size_t n)
C memxor(void *dst, const void *src, size_t n)
C %rdi %rsi %rdx
ALIGN(16)
......@@ -45,7 +45,7 @@ PROLOGUE(nettle_memxor)
jmp .Lmemxor3_entry
EPILOGUE(nettle_memxor)
C memxor3(uint8_t *dst, const uint8_t *a, const uint8_t *b, size_t n)
C memxor3(void *dst, const void *a, const void *b, size_t n)
C %rdi %rsi %rdx %rcx
ALIGN(16)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment