diff options
author | Ulrich Drepper <drepper@redhat.com> | 1998-05-19 21:12:42 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1998-05-19 21:12:42 +0000 |
commit | 685cb06a89cb7878c9b942bad0a9420226f546b0 (patch) | |
tree | a89e75f2d56cad36eb178dacff37fde4be52c86f /sysdeps/i386/i486 | |
parent | 2d26e9ebb320c04293ddd5fd5d482f47cbb3b0e7 (diff) | |
download | glibc-685cb06a89cb7878c9b942bad0a9420226f546b0.tar glibc-685cb06a89cb7878c9b942bad0a9420226f546b0.tar.gz glibc-685cb06a89cb7878c9b942bad0a9420226f546b0.tar.bz2 glibc-685cb06a89cb7878c9b942bad0a9420226f546b0.zip |
Update.
1998-05-19 Ulrich Drepper <drepper@cygnus.com>
* sysdeps/i386/i486/bits/string.h (__strstr_g): Initialize %edx
correctly. Patch by Horst von Brand <vonbrand@sleipnir.valparaiso.cl>.
Diffstat (limited to 'sysdeps/i386/i486')
-rw-r--r-- | sysdeps/i386/i486/bits/string.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sysdeps/i386/i486/bits/string.h b/sysdeps/i386/i486/bits/string.h index 7a919a1ac3..d4c2eaf715 100644 --- a/sysdeps/i386/i486/bits/string.h +++ b/sysdeps/i386/i486/bits/string.h @@ -1530,7 +1530,8 @@ __strstr_g (__const char *__haystack, __const char *__needle) "2:\n\t" "popl %%ebx" : "=a" (__res), "=&c" (__d0), "=&S" (__d1), "=&D" (__d2) - : "0" (0), "1" (0xffffffff), "2" (__haystack), "3" (0), "d" (__needle) + : "0" (0), "1" (0xffffffff), "2" (__haystack), "3" (__needle), + "d" (__needle) : "cc"); return __res; } @@ -1558,7 +1559,8 @@ __strstr_g (__const char *__haystack, __const char *__needle) "xorl %%eax,%%eax\n" "2:" : "=a" (__res), "=&c" (__d0), "=&S" (__d1), "=&D" (__d2), "=&d" (__d3) - : "0" (0), "1" (0xffffffff), "2" (__haystack), "3" (0), "b" (__needle) + : "0" (0), "1" (0xffffffff), "2" (__haystack), "3" (__needle), + "b" (__needle) : "cc"); return __res; } |