diff options
author | Ulrich Drepper <drepper@redhat.com> | 1999-08-26 06:29:56 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1999-08-26 06:29:56 +0000 |
commit | 77faa3541634894476d904cd517e81f57cfa4fe2 (patch) | |
tree | 9aacdaf0acb446867ae056ec3ae81ccb08b96b46 /sysdeps/i386/fpu | |
parent | b395c02de77c87e8d4df165e623ba31bf54579cc (diff) | |
download | glibc-77faa3541634894476d904cd517e81f57cfa4fe2.zip glibc-77faa3541634894476d904cd517e81f57cfa4fe2.tar.gz glibc-77faa3541634894476d904cd517e81f57cfa4fe2.tar.bz2 |
Update.
* sysdeps/i386/fpu/bits/mathinline.h (__finite): Mark constant as
unsigned to avoid warning. [PR libc/1271].
* conform/conformtest.pl: Allow testing regex.h which requires
sys/types.h being included.
Diffstat (limited to 'sysdeps/i386/fpu')
-rw-r--r-- | sysdeps/i386/fpu/bits/mathinline.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/i386/fpu/bits/mathinline.h b/sysdeps/i386/fpu/bits/mathinline.h index e22a251..a45db6e 100644 --- a/sysdeps/i386/fpu/bits/mathinline.h +++ b/sysdeps/i386/fpu/bits/mathinline.h @@ -641,7 +641,7 @@ __finite (double __x) { return (__extension__ (((((union { double __d; int __i[2]; }) {__d: __x}).__i[1] - | 0x800fffff) + 1) >> 31)); + | 0x800fffffu) + 1) >> 31)); } /* Miscellaneous functions */ |