summaryrefslogtreecommitdiff
path: root/sysdeps/i386/fpu/bits/mathinline.h
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1999-08-26 06:29:56 +0000
committerUlrich Drepper <drepper@redhat.com>1999-08-26 06:29:56 +0000
commit77faa3541634894476d904cd517e81f57cfa4fe2 (patch)
tree9aacdaf0acb446867ae056ec3ae81ccb08b96b46 /sysdeps/i386/fpu/bits/mathinline.h
parentb395c02de77c87e8d4df165e623ba31bf54579cc (diff)
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/bits/mathinline.h')
-rw-r--r--sysdeps/i386/fpu/bits/mathinline.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/i386/fpu/bits/mathinline.h b/sysdeps/i386/fpu/bits/mathinline.h
index e22a251107..a45db6e365 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 */