]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Correct types of fields in libm-test.inc structures.
authorJoseph Myers <joseph@codesourcery.com>
Tue, 14 May 2013 21:00:56 +0000 (21:00 +0000)
committerJoseph Myers <joseph@codesourcery.com>
Tue, 14 May 2013 21:00:56 +0000 (21:00 +0000)
ChangeLog
math/libm-test.inc

index 209b7972bf1b02f86fcf562b8c606088c2a0d495..df8da2ba2609176eec6bfcce5246a3b08a471ecc 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
 2013-05-14  Joseph Myers  <joseph@codesourcery.com>
 
+       * math/libm-test.inc (struct test_fF_f1_data): Change type of
+       extra_test to int.
+       (struct test_f_i_data): Change type of max_ulp to int.
+
        * math/libm-test.inc (test_ffI_f1_data): New type.
        (RUN_TEST_LOOP_ffI_f1): New macro.
        (remquo_test_data): New variable.
index 68013bec7af7f5cdd1494e0a355e8516c6a96e1a..d0e310151ab59c85f3105c61d19278b1fbe9bb3f 100644 (file)
@@ -956,7 +956,7 @@ struct test_fF_f1_data
   int exceptions;
   const char *extra_name;
   FLOAT extra_init;
-  FLOAT extra_test;
+  int extra_test;
   FLOAT extra_expected;
   FLOAT extra_ulp;
 };
@@ -986,7 +986,7 @@ struct test_f_i_data
   const char *test_name;
   FLOAT arg;
   int expected;
-  FLOAT max_ulp;
+  int max_ulp;
   int exceptions;
 };