X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Fmemcmp.c;h=72fb81de11ac49d137176a5ec2a2e28dc372770b;hb=f09be9e0ac9122c6cdba13ba1ccb8280f2181faa;hp=98069b30ce5267955c91dc603c58b5f1cf04e6c5;hpb=441aa3044f43e5572f58c354f01e6bc070acd5c7;p=gnulib.git diff --git a/lib/memcmp.c b/lib/memcmp.c index 98069b30c..72fb81de1 100644 --- a/lib/memcmp.c +++ b/lib/memcmp.c @@ -1,5 +1,5 @@ -/* Copyright (C) 1991, 1993, 1995, 1997, 1998, 2003, 2006, 2009 Free Software - Foundation, Inc. +/* Copyright (C) 1991, 1993, 1995, 1997-1998, 2003, 2006, 2009-2011 Free + Software Foundation, Inc. Contributed by Torbjorn Granlund (tege@sics.se). @@ -65,7 +65,7 @@ typedef unsigned char byte; #ifdef WORDS_BIGENDIAN # define CMP_LT_OR_GT(a, b) ((a) > (b) ? 1 : -1) #else -# define CMP_LT_OR_GT(a, b) memcmp_bytes ((a), (b)) +# define CMP_LT_OR_GT(a, b) memcmp_bytes (a, b) #endif /* BE VERY CAREFUL IF YOU CHANGE THIS CODE! */ @@ -259,28 +259,28 @@ memcmp_not_common_alignment (uintptr_t srcp1, uintptr_t srcp2, size_t len) { a0 = ((op_t *) srcp1)[0]; b0 = ((op_t *) srcp2)[0]; - x = MERGE(a2, shl, a3, shr); + x = MERGE (a2, shl, a3, shr); if (x != b3) return CMP_LT_OR_GT (x, b3); do3: a1 = ((op_t *) srcp1)[1]; b1 = ((op_t *) srcp2)[1]; - x = MERGE(a3, shl, a0, shr); + x = MERGE (a3, shl, a0, shr); if (x != b0) return CMP_LT_OR_GT (x, b0); do2: a2 = ((op_t *) srcp1)[2]; b2 = ((op_t *) srcp2)[2]; - x = MERGE(a0, shl, a1, shr); + x = MERGE (a0, shl, a1, shr); if (x != b1) return CMP_LT_OR_GT (x, b1); do1: a3 = ((op_t *) srcp1)[3]; b3 = ((op_t *) srcp2)[3]; - x = MERGE(a1, shl, a2, shr); + x = MERGE (a1, shl, a2, shr); if (x != b2) return CMP_LT_OR_GT (x, b2); @@ -293,7 +293,7 @@ memcmp_not_common_alignment (uintptr_t srcp1, uintptr_t srcp2, size_t len) /* This is the right position for do0. Please don't move it into the loop. */ do0: - x = MERGE(a2, shl, a3, shr); + x = MERGE (a2, shl, a3, shr); if (x != b3) return CMP_LT_OR_GT (x, b3); return 0;