Hi,
On 10/22/2014 11:05 PM, François Dumont wrote:
> + VERIFY( counter_type::less_compare_count <= 2.0 * std::log2(nb_values) );
Nit: log2 isn't in C89, thus we shouldn't use it unconditionally, ie, if
the test isn't guarded by { dg-require-cmath "" }. Thus, either the
latter, or just express log_2 in terms of log / log10.
Paolo.