diff options
author | Joseph Myers <joseph@codesourcery.com> | 2015-09-15 20:36:50 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2015-09-15 20:36:50 +0000 |
commit | 223d1cacc5dafe8af53e84608c2d130721c4edcd (patch) | |
tree | 87c52d1da19bfde3a8822493e261442afd83360d /NEWS | |
parent | 0b87419b690d1711697ed95808527400910ff997 (diff) | |
download | glibc-223d1cacc5dafe8af53e84608c2d130721c4edcd.tar.gz glibc-223d1cacc5dafe8af53e84608c2d130721c4edcd.tar.xz glibc-223d1cacc5dafe8af53e84608c2d130721c4edcd.zip |
Mark fegetround pure (bug 16296).
Bug 16296 notes that fegetround is a pure function and should be marked as such in fenv.h. This patch implements that. Tested for x86_64 and x86 (testsuite, and that installed stripped shared libraries are unchanged by this patch). [BZ #16296] * math/fenv.h (fegetround): Use __attribute_pure__. * include/fenv.h (__fegetround): Likewise.
Diffstat (limited to 'NEWS')
-rw-r--r-- | NEWS | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/NEWS b/NEWS index 797d717fb4..b35d5424d3 100644 --- a/NEWS +++ b/NEWS @@ -9,12 +9,12 @@ Version 2.23 * The following bugs are resolved with this release: - 2542, 2543, 2558, 2898, 14341, 14912, 15786, 15918, 16141, 16517, 16519, - 16520, 16521, 16734, 16973, 16985, 17787, 17905, 18084, 18086, 18240, - 18265, 18370, 18421, 18480, 18525, 18595, 18610, 18618, 18647, 18661, - 18674, 18675, 18681, 18757, 18778, 18781, 18787, 18789, 18790, 18795, - 18796, 18820, 18823, 18824, 18863, 18870, 18873, 18875, 18887, 18921, - 18952, 18961, 18966. + 2542, 2543, 2558, 2898, 14341, 14912, 15786, 15918, 16141, 16296, 16517, + 16519, 16520, 16521, 16734, 16973, 16985, 17787, 17905, 18084, 18086, + 18240, 18265, 18370, 18421, 18480, 18525, 18595, 18610, 18618, 18647, + 18661, 18674, 18675, 18681, 18757, 18778, 18781, 18787, 18789, 18790, + 18795, 18796, 18820, 18823, 18824, 18863, 18870, 18873, 18875, 18887, + 18921, 18952, 18961, 18966. * The obsolete header <regexp.h> has been removed. Programs that require this header must be updated to use <regex.h> instead. |