diff options
author | Philip Guenther <guenther@cvs.openbsd.org> | 2022-01-02 01:20:26 +0000 |
---|---|---|
committer | Philip Guenther <guenther@cvs.openbsd.org> | 2022-01-02 01:20:26 +0000 |
commit | 43280e4e444cf677bbb85ccb24735bbd20c32c17 (patch) | |
tree | 7cf7bf121f217b9d9cfba665b8101d7acb2f6eb7 /lib/libc | |
parent | 6daa4a2e1f9216510fa26cfd2852d0b5ab9c5b83 (diff) |
Don't use *ENTRY_NB() with END_BUILTIN(), at least yet
Problem noted by naddy@
Diffstat (limited to 'lib/libc')
-rw-r--r-- | lib/libc/arch/amd64/string/memmove.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc/arch/amd64/string/memmove.S b/lib/libc/arch/amd64/string/memmove.S index bb3750ee19a..67f2e41e7b8 100644 --- a/lib/libc/arch/amd64/string/memmove.S +++ b/lib/libc/arch/amd64/string/memmove.S @@ -44,7 +44,7 @@ ENTRY_NB(bcopy) xchgq %rdi,%rsi /* fall into memmove */ -NENTRY_NB(memmove) +NENTRY(memmove) RETGUARD_SETUP(memmove, r10) movq %rdi,%r11 /* save dest */ movq %rdx,%rcx |