This is the mail archive of the glibc-cvs@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

GNU C Library master sources branch master updated. glibc-2.17-669-gf71172e


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU C Library master sources".

The branch, master has been updated
       via  f71172e551d436f29bb5f2e53ceea2c92e946866 (commit)
      from  8cfa635ab822caf5a441eaf33ac9a8e73a14029f (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=f71172e551d436f29bb5f2e53ceea2c92e946866

commit f71172e551d436f29bb5f2e53ceea2c92e946866
Author: Joseph Myers <joseph@codesourcery.com>
Date:   Tue May 14 21:00:56 2013 +0000

    Correct types of fields in libm-test.inc structures.

diff --git a/ChangeLog b/ChangeLog
index 209b797..df8da2b 100644
--- 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.
diff --git a/math/libm-test.inc b/math/libm-test.inc
index 68013be..d0e3101 100644
--- a/math/libm-test.inc
+++ b/math/libm-test.inc
@@ -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;
 };
 

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog          |    4 ++++
 math/libm-test.inc |    4 ++--
 2 files changed, 6 insertions(+), 2 deletions(-)


hooks/post-receive
-- 
GNU C Library master sources


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]