mirror of
https://sourceware.org/git/glibc.git
synced 2024-12-23 03:10:05 +00:00
Avoid warning through fake initialization.
This commit is contained in:
parent
2d2f482e48
commit
57b378ac89
@ -1,3 +1,8 @@
|
||||
2009-08-07 Ulrich Drepper <drepper@redhat.com>
|
||||
|
||||
* sysdeps/x86_64/multiarch/strcspn-c.c (STRCSPN_SSE42): Avoid
|
||||
warning through fake initialization.
|
||||
|
||||
2009-08-07 H.J. Lu <hongjiu.lu@intel.com>
|
||||
|
||||
* sysdeps/i386/i686/multiarch/strlen.S (ENTRY): Add the missing "; \".
|
||||
|
@ -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)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user