mirror of git://sourceware.org/git/glibc.git
Update.
2003-10-08 Jakub Jelinek <jakub@redhat.com> * sysdeps/generic/dl-sysdep.c (_dl_important_hwcaps): Don't generate two identical copies of strings.
This commit is contained in:
parent
e700a90879
commit
943ae89d56
|
|
@ -1,3 +1,8 @@
|
||||||
|
2003-10-08 Jakub Jelinek <jakub@redhat.com>
|
||||||
|
|
||||||
|
* sysdeps/generic/dl-sysdep.c (_dl_important_hwcaps): Don't generate
|
||||||
|
two identical copies of strings.
|
||||||
|
|
||||||
2003-10-06 Ulrich Drepper <drepper@redhat.com>
|
2003-10-06 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
* posix/bug-regex11.c: Add some more tests which fail so far.
|
* posix/bug-regex11.c: Add some more tests which fail so far.
|
||||||
|
|
|
||||||
|
|
@ -454,7 +454,7 @@ _dl_important_hwcaps (const char *platform, size_t platform_len, size_t *sz,
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
n = 1 << cnt;
|
n = 1 << (cnt - 1);
|
||||||
do
|
do
|
||||||
{
|
{
|
||||||
n -= 2;
|
n -= 2;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue