mirror of git://gcc.gnu.org/git/gcc.git
profiler_trace.h: Uglify it to __it, use everywhere std::size_t instead of size_t.
2010-06-25 Paolo Carlini <paolo.carlini@oracle.com> * include/profile/impl/profiler_trace.h: Uglify it to __it, use everywhere std::size_t instead of size_t. From-SVN: r161368
This commit is contained in:
parent
0354c0c70b
commit
0b032f38aa
|
@ -1,3 +1,8 @@
|
||||||
|
2010-06-25 Paolo Carlini <paolo.carlini@oracle.com>
|
||||||
|
|
||||||
|
* include/profile/impl/profiler_trace.h: Uglify it to __it, use
|
||||||
|
everywhere std::size_t instead of size_t.
|
||||||
|
|
||||||
2010-06-24 Paolo Carlini <paolo.carlini@oracle.com>
|
2010-06-24 Paolo Carlini <paolo.carlini@oracle.com>
|
||||||
|
|
||||||
* include/profile/impl/profiler_trace.h (__trace_base<>::
|
* include/profile/impl/profiler_trace.h (__trace_base<>::
|
||||||
|
|
|
@ -462,8 +462,8 @@ namespace __gnu_profile
|
||||||
std::fclose(__raw_file);
|
std::fclose(__raw_file);
|
||||||
|
|
||||||
// Sort data by magnitude, keeping just top N.
|
// Sort data by magnitude, keeping just top N.
|
||||||
size_t __cutoff = std::min(_GLIBCXX_PROFILE_DATA(_S_max_warn_count),
|
std::size_t __cutoff = std::min(_GLIBCXX_PROFILE_DATA(_S_max_warn_count),
|
||||||
__warnings.size());
|
__warnings.size());
|
||||||
__top_n(__warnings, __top_warnings, __cutoff);
|
__top_n(__warnings, __top_warnings, __cutoff);
|
||||||
|
|
||||||
FILE* __warn_file = __open_output_file("txt");
|
FILE* __warn_file = __open_output_file("txt");
|
||||||
|
@ -564,10 +564,10 @@ namespace __gnu_profile
|
||||||
if (!__env_value)
|
if (!__env_value)
|
||||||
{
|
{
|
||||||
// Look it up in the config file.
|
// Look it up in the config file.
|
||||||
__env_t::iterator it
|
__env_t::iterator __it
|
||||||
= _GLIBCXX_PROFILE_DATA(__env).find(__factor->__env_var);
|
= _GLIBCXX_PROFILE_DATA(__env).find(__factor->__env_var);
|
||||||
if (it != _GLIBCXX_PROFILE_DATA(__env).end())
|
if (__it != _GLIBCXX_PROFILE_DATA(__env).end())
|
||||||
__env_value = (*it).second.c_str();
|
__env_value = (*__it).second.c_str();
|
||||||
}
|
}
|
||||||
|
|
||||||
if (__env_value)
|
if (__env_value)
|
||||||
|
|
Loading…
Reference in New Issue