diff options
author | Joseph Myers <joseph@codesourcery.com> | 2018-08-03 16:56:02 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2018-08-03 16:56:02 +0000 |
commit | ea705eb5ec1cf12525ab5c668e89ca28962978c6 (patch) | |
tree | 55b34a84fb26765fa93055757fea95265f187c11 /ChangeLog | |
parent | 284f42bc778e487dfd5dff5c01959f93b9e0c4f5 (diff) | |
download | glibc-ea705eb5ec1cf12525ab5c668e89ca28962978c6.tar.gz glibc-ea705eb5ec1cf12525ab5c668e89ca28962978c6.tar.xz glibc-ea705eb5ec1cf12525ab5c668e89ca28962978c6.zip |
Consistently terminate libm-test-*.inc TEST lines with commas.
Some TEST_* lines in libm-test-*.inc end with semicolons not commas. This works at present because gen-libm-test.pl ignores whatever comes after the TEST_* call, but is logically wrong (since the TEST_* calls generate array elements, not statements) and the Python replacement for gen-libm-test.pl that I'm working on is stricter about the syntax here. This patch fixes the lines in question to use commas like most such lines already do. Tested for x86_64. * math/libm-test-ilogb.inc (ilogb_test_data): Use ',' not ';' after TEST_* calls. * math/libm-test-llogb.inc (llogb_test_data): Likewise. * math/libm-test-logb.inc (logb_test_data): Likewise.
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog index a36567afc9..cd894ed11a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2018-08-03 Joseph Myers <joseph@codesourcery.com> + + * math/libm-test-ilogb.inc (ilogb_test_data): Use ',' not ';' + after TEST_* calls. + * math/libm-test-llogb.inc (llogb_test_data): Likewise. + * math/libm-test-logb.inc (logb_test_data): Likewise. + 2018-08-03 Wilco Dijkstra <wdijkstr@arm.com> * string/strcasestr.c (STRCASESTR): Simplify and speedup first match. |