Commit 31785b29 by Benjamin Kosnik Committed by Benjamin Kosnik

search_n.cc: Disambiguate local variable.

2011-12-19  Benjamin Kosnik  <bkoz@redhat.com>

	* testsuite/performance/25_algorithms/search_n.cc: Disambiguate
	local variable.

From-SVN: r182510
parent eded2736
2011-12-19 Benjamin Kosnik <bkoz@redhat.com>
* testsuite/performance/25_algorithms/search_n.cc: Disambiguate
local variable.
2011-12-18 Jonathan Wakely <jwakely.gcc@gmail.com> 2011-12-18 Jonathan Wakely <jwakely.gcc@gmail.com>
* doc/xml/manual/iterators.xml: Replace "sect1" with "section". * doc/xml/manual/iterators.xml: Replace "sect1" with "section".
......
...@@ -31,7 +31,7 @@ using namespace __gnu_test; ...@@ -31,7 +31,7 @@ using namespace __gnu_test;
const int length = 10000000; const int length = 10000000;
const int match_length = 3; const int match_length = 3;
int array[length]; int ary[length];
int int
main(void) main(void)
...@@ -41,10 +41,10 @@ main(void) ...@@ -41,10 +41,10 @@ main(void)
int match = rand() % (match_length - 1); int match = rand() % (match_length - 1);
for(int i = 0; i < length; i++) for(int i = 0; i < length; i++)
{ {
array[i] = (match != 0) ? 1 : 0; ary[i] = (match != 0) ? 1 : 0;
if(--match < 0) match = rand() % (match_length - 1); if(--match < 0) match = rand() % (match_length - 1);
} }
__gnu_test::test_container<int, forward_iterator_wrapper> fcon(array, array + length); __gnu_test::test_container<int, forward_iterator_wrapper> fcon(ary, ary + length);
start_counters(time, resource); start_counters(time, resource);
for(int i = 0; i < 100; i++) for(int i = 0; i < 100; i++)
search_n(fcon.begin(), fcon.end(), 10, 1); search_n(fcon.begin(), fcon.end(), 10, 1);
...@@ -52,7 +52,7 @@ main(void) ...@@ -52,7 +52,7 @@ main(void)
report_performance(__FILE__, "forward iterator", time, resource); report_performance(__FILE__, "forward iterator", time, resource);
clear_counters(time, resource); clear_counters(time, resource);
__gnu_test::test_container<int, random_access_iterator_wrapper> rcon(array, array + length); __gnu_test::test_container<int, random_access_iterator_wrapper> rcon(ary, ary + length);
start_counters(time, resource); start_counters(time, resource);
for(int i = 0; i < 100; i++) for(int i = 0; i < 100; i++)
search_n(rcon.begin(), rcon.end(), 10, 1); search_n(rcon.begin(), rcon.end(), 10, 1);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment