All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Fix non-optimized compilation of Xen's memcmp
@ 2007-11-23 17:54 Samuel Thibault
  0 siblings, 0 replies; only message in thread
From: Samuel Thibault @ 2007-11-23 17:54 UTC (permalink / raw)
  To: xen-devel

Even when using __builtin_memcmp, gcc may emit external references to
memcmp (when not optimizing for instance), so this #define does not
always provide a completely suitable memcmp().

Signed-off-by: Samuel Thibault <samuel.thibault@citrix.com>

diff -r 0eae1f245c8d xen/include/asm-x86/string.h
--- a/xen/include/asm-x86/string.h	Fri Nov 23 17:41:00 2007 +0000
+++ b/xen/include/asm-x86/string.h	Fri Nov 23 17:50:51 2007 +0000
@@ -109,7 +109,6 @@ void *__memcpy(void *t, const void *f, s
 #define __HAVE_ARCH_MEMMOVE
 extern void *memmove(void *dest, const void *src, size_t n);
 
-#define __HAVE_ARCH_MEMCMP
 #define memcmp __builtin_memcmp
 
 static inline void *__memset_generic(void *s, char c, size_t count)

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2007-11-23 17:54 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-11-23 17:54 [PATCH] Fix non-optimized compilation of Xen's memcmp Samuel Thibault

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.