about summary refs log tree commit diff
path: root/sysdeps/x86_64
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2009-08-07 16:19:54 -0700
committerUlrich Drepper <drepper@redhat.com>2009-08-07 16:19:54 -0700
commit57b378ac895c346d74758b54f9e388ed3ca30751 (patch)
treec27ccba4e3a26c77f38555028493a82c7b4fd1c3 /sysdeps/x86_64
parent2d2f482e480519f627fb58b163a2d7668b579e69 (diff)
downloadglibc-57b378ac895c346d74758b54f9e388ed3ca30751.tar.gz
glibc-57b378ac895c346d74758b54f9e388ed3ca30751.tar.xz
glibc-57b378ac895c346d74758b54f9e388ed3ca30751.zip
Avoid warning through fake initialization.
Diffstat (limited to 'sysdeps/x86_64')
-rw-r--r--sysdeps/x86_64/multiarch/strcspn-c.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/sysdeps/x86_64/multiarch/strcspn-c.c b/sysdeps/x86_64/multiarch/strcspn-c.c
index 8286d0372b..daeebe1bf5 100644
--- a/sysdeps/x86_64/multiarch/strcspn-c.c
+++ b/sysdeps/x86_64/multiarch/strcspn-c.c
@@ -86,6 +86,8 @@ STRCSPN_SSE42 (const char *s, const char *a)
 
   const char *aligned;
   __m128i mask;
+  /* Fake initialization.  gcc otherwise will warn.  */
+  asm ("" : "=xm" (mask));
   int offset = (int) ((size_t) a & 15);
   if (offset != 0)
     {