diff options
author | Joseph Myers <joseph@codesourcery.com> | 2013-05-14 21:00:56 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2013-05-14 21:00:56 +0000 |
commit | f71172e551d436f29bb5f2e53ceea2c92e946866 (patch) | |
tree | 993a154fe18a86f59b63bd844c09acfe129ee174 /math | |
parent | 8cfa635ab822caf5a441eaf33ac9a8e73a14029f (diff) | |
download | glibc-f71172e551d436f29bb5f2e53ceea2c92e946866.zip glibc-f71172e551d436f29bb5f2e53ceea2c92e946866.tar.gz glibc-f71172e551d436f29bb5f2e53ceea2c92e946866.tar.bz2 |
Correct types of fields in libm-test.inc structures.
Diffstat (limited to 'math')
-rw-r--r-- | math/libm-test.inc | 4 |
1 files changed, 2 insertions, 2 deletions
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; }; |