From a2ec0289ecd87d191e771ffebe1545efdf3c0c14 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Tue, 23 Nov 1999 17:06:43 +0000 Subject: [PATCH] bcopy takes size_t argument, not signed, so we should not special case it for negative args. --- sysdeps/sparc/sparc32/memcpy.S | 6 ------ 1 file changed, 6 deletions(-) diff --git a/sysdeps/sparc/sparc32/memcpy.S b/sysdeps/sparc/sparc32/memcpy.S index 24d9e04346a..492d1278240 100644 --- a/sysdeps/sparc/sparc32/memcpy.S +++ b/sysdeps/sparc/sparc32/memcpy.S @@ -163,16 +163,10 @@ b 3f sub %o0, 2, %o0 -0: retl - nop ! Only bcopy returns here and it retuns void... - ENTRY(bcopy) mov %o0, %o3 mov %o1, %o0 mov %o3, %o1 - tst %o2 - bcs 0b - /* Do the cmp in the delay slot */ END(bcopy) ENTRY(memmove) cmp %o0, %o1 -- 2.47.2