* value-prof.c (free_hist): Remove call to memset and the enclosing if
condition.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@249675
138bc75d-0d04-0410-961f-
82ee72b054a4
+2017-06-27 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org>
+
+ * value-prof.c (free_hist): Remove call to memset and the enclosing if
+ condition.
+
gcc/ChangeLog:
2017-06-26 Jerome Lambourg <lambourg@adacore.com>
{
histogram_value hist = *(histogram_value *) slot;
free (hist->hvalue.counters);
- if (flag_checking)
- memset (hist, 0xab, sizeof (*hist));
free (hist);
return 1;
}