This is the mail archive of the cygwin-cvs@cygwin.com mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[newlib-cygwin] cygwin: [w]mempcpy: fix global symbol


https://sourceware.org/git/gitweb.cgi?p=newlib-cygwin.git;h=27c1a7972cedc1b488070e907930189f370b2293

commit 27c1a7972cedc1b488070e907930189f370b2293
Author: Corinna Vinschen <corinna@vinschen.de>
Date:   Thu Nov 30 21:34:29 2017 +0100

    cygwin: [w]mempcpy: fix global symbol
    
    Signed-off-by: Corinna Vinschen <corinna@vinschen.de>

Diff:
---
 winsup/cygwin/miscfuncs.cc | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/winsup/cygwin/miscfuncs.cc b/winsup/cygwin/miscfuncs.cc
index 923556d..3ad6587 100644
--- a/winsup/cygwin/miscfuncs.cc
+++ b/winsup/cygwin/miscfuncs.cc
@@ -881,9 +881,9 @@ memcpy:									\n\
 	jmp	_memcpy							\n\
 	.seh_endproc							\n\
 									\n\
-	.globl  memcpy							\n\
-	.seh_proc memcpy						\n\
-mempcpy:									\n\
+	.globl  mempcpy							\n\
+	.seh_proc mempcpy						\n\
+mempcpy:								\n\
 	.seh_endprologue						\n\
 	movq	%rcx,%rax	/* return dst  */			\n\
 	addq	%r8,%rax	/*         + n */			\n\
@@ -908,8 +908,8 @@ wmemcpy:								\n\
 	jmp	_memcpy							\n\
 	.seh_endproc							\n\
 									\n\
-	.globl  wmemcpy							\n\
-	.seh_proc wmemcpy						\n\
+	.globl  wmempcpy						\n\
+	.seh_proc wmempcpy						\n\
 wmempcpy:								\n\
 	.seh_endprologue						\n\
 	shlq	$1,%r8		/* cnt * sizeof (wchar_t) */		\n\


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]