about summary refs log tree commit diff
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
parentb395c02de77c87e8d4df165e623ba31bf54579cc (diff)
downloadglibc-77faa3541634894476d904cd517e81f57cfa4fe2.tar.gz
glibc-77faa3541634894476d904cd517e81f57cfa4fe2.tar.xz
glibc-77faa3541634894476d904cd517e81f57cfa4fe2.zip
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.
-rw-r--r--ChangeLog6
-rw-r--r--conform/conformtest.pl13
-rw-r--r--conform/data/regex.h-data2
-rw-r--r--sysdeps/i386/fpu/bits/mathinline.h2
4 files changed, 21 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 029c778e55..6332f64be0 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
 1999-08-25  Ulrich Drepper  <drepper@cygnus.com>
 
+	* 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.
+
 	* conform/data/regex.h-data: Allow *_t types.
 	* conform/data/pwd.h-data: Likewise.
 	* conform/data/sched.h-data: Likewise
diff --git a/conform/conformtest.pl b/conform/conformtest.pl
index 8a4947443a..41613c67e5 100644
--- a/conform/conformtest.pl
+++ b/conform/conformtest.pl
@@ -18,6 +18,9 @@ $CFLAGS = "-I. '-D__attribute__(x)=' -D_XOPEN_SOURCE=500";
 	     'short', 'signed', 'sizeof', 'static', 'struct', 'switch',
 	     'typedef', 'union', 'unsigned', 'void', 'volatile', 'while');
 
+# Some headers need a bit more attention.
+$mustprepend{'regex.h'} = "#include <sys/types.h>\n";
+
 # Make an hash table from this information.
 while ($#keywords) {
   $iskeyword{pop (@keywords)} = 1;
@@ -228,12 +231,14 @@ while ($#headers >= 0) {
   my($fnamebase) = "$tmpdir/$h-test";
   my($missing);
   my(@allow) = ();
+  my($prepend) = $mustprepend{$h};
 
   printf ("Testing <$h>\n");
   printf ("----------" . "-" x length ($h) . "\n");
 
   # Generate a program to test for the availability of this header.
   open (TESTFILE, ">$fnamebase.c");
+  print TESTFILE "$prepend";
   print TESTFILE "#include <$h>\n";
   close (TESTFILE);
 
@@ -260,6 +265,7 @@ while ($#headers >= 0) {
 
       # Generate a program to test for the availability of this member.
       open (TESTFILE, ">$fnamebase.c");
+      print TESTFILE "$prepend";
       print TESTFILE "#include <$h>\n";
       print TESTFILE "$struct a;\n";
       print TESTFILE "$struct b;\n";
@@ -275,6 +281,7 @@ while ($#headers >= 0) {
 
       # Test the types of the members.
       open (TESTFILE, ">$fnamebase.c");
+      print TESTFILE "$prepend";
       print TESTFILE "#include <$h>\n";
       print TESTFILE "$struct a;\n";
       print TESTFILE "extern $type b$rest;\n";
@@ -293,6 +300,7 @@ while ($#headers >= 0) {
 
       # Generate a program to test for the availability of this constant.
       open (TESTFILE, ">$fnamebase.c");
+      print TESTFILE "$prepend";
       print TESTFILE "#include <$h>\n";
       print TESTFILE "__typeof__ ($const) a = $const;\n";
       close (TESTFILE);
@@ -303,6 +311,7 @@ while ($#headers >= 0) {
       if ($value ne "") {
 	# Generate a program to test for the value of this constant.
 	open (TESTFILE, ">$fnamebase.c");
+	print TESTFILE "$prepend";
 	print TESTFILE "#include <$h>\n";
 	print TESTFILE "int main (void) { return $const != $value; }\n";
 	close (TESTFILE);
@@ -327,6 +336,7 @@ while ($#headers >= 0) {
 
       # Generate a program to test for the availability of this constant.
       open (TESTFILE, ">$fnamebase.c");
+      print TESTFILE "$prepend";
       print TESTFILE "#include <$h>\n";
       print TESTFILE "$type *a;\n";
       close (TESTFILE);
@@ -344,6 +354,7 @@ while ($#headers >= 0) {
 
       # Generate a program to test for availability of this function.
       open (TESTFILE, ">$fnamebase.c");
+      print TESTFILE "$prepend";
       print TESTFILE "#include <$h>\n";
       # print TESTFILE "#undef $fname\n";
       print TESTFILE "$rettype (*foobarbaz) $args = $fname;\n";
@@ -354,6 +365,7 @@ while ($#headers >= 0) {
 
       # Generate a program to test for the type of this function.
       open (TESTFILE, ">$fnamebase.c");
+      print TESTFILE "$prepend";
       print TESTFILE "#include <$h>\n";
       # print TESTFILE "#undef $fname\n";
       print TESTFILE "extern $rettype (*foobarbaz) $args;\n";
@@ -370,6 +382,7 @@ while ($#headers >= 0) {
 
       # Generate a program to test for availability of this macro.
       open (TESTFILE, ">$fnamebase.c");
+      print TESTFILE "$prepend";
       print TESTFILE "#include <$h>\n";
       print TESTFILE "#ifndef $macro\n";
       print TESTFILE "# error \"Macro $macro not defined\"\n";
diff --git a/conform/data/regex.h-data b/conform/data/regex.h-data
index 6edb1af22e..38495d5b83 100644
--- a/conform/data/regex.h-data
+++ b/conform/data/regex.h-data
@@ -1,6 +1,6 @@
 #ifndef ISO
 type regex_t
-element regex_t re_nsub
+element regex_t size_t re_nsub
 
 type regoff_t
 
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 */