diff options
author | Siddhesh Poyarekar <siddhesh@redhat.com> | 2013-05-17 19:10:33 +0530 |
---|---|---|
committer | Siddhesh Poyarekar <siddhesh@redhat.com> | 2013-05-17 19:10:33 +0530 |
commit | 48a18de1e1e7dfeab6d034765caaf732b53cfcb7 (patch) | |
tree | 1710f87c334a2d5cc79c30f9262212697eb814ef /NEWS | |
parent | 13d3b41a36c4f28d171a144f8a9baad3a8835981 (diff) | |
download | glibc-48a18de1e1e7dfeab6d034765caaf732b53cfcb7.tar.gz glibc-48a18de1e1e7dfeab6d034765caaf732b53cfcb7.tar.xz glibc-48a18de1e1e7dfeab6d034765caaf732b53cfcb7.zip |
Prevent optimizing out of benchmark function call
Resolves: #15424 The compiler would optimize the benchmark function call out of the loop and call it only once, resulting in blazingly fast times for some benchmarks (notably atan, sin and cos). Mark the inputs as volatile so that the code is forced to read again from the input for each iteration.
Diffstat (limited to 'NEWS')
-rw-r--r-- | NEWS | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/NEWS b/NEWS index 86c287ff29..57c7ee0a8f 100644 --- a/NEWS +++ b/NEWS @@ -17,7 +17,7 @@ Version 2.18 15086, 15160, 15214, 15221, 15232, 15234, 15283, 15285, 15287, 15304, 15305, 15307, 15309, 15327, 15330, 15335, 15336, 15337, 15342, 15346, 15359, 15361, 15366, 15380, 15394, 15395, 15405, 15406, 15409, 15416, - 15418, 15419, 15423, 15426, 15429, 15442, 15448. + 15418, 15419, 15423, 15424, 15426, 15429, 15442, 15448. * CVE-2013-0242 Buffer overrun in regexp matcher has been fixed (Bugzilla #15078). |