 Chromium Code Reviews
 Chromium Code Reviews Issue 16409:
  Inline array loads in loops directly in the code instead of always...  (Closed) 
  Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
    
  
    Issue 16409:
  Inline array loads in loops directly in the code instead of always...  (Closed) 
  Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/| Index: src/d8.cc | 
| =================================================================== | 
| --- src/d8.cc (revision 1003) | 
| +++ src/d8.cc (working copy) | 
| @@ -367,16 +367,16 @@ | 
| void Shell::OnExit() { | 
| if (i::FLAG_dump_counters) { | 
| - ::printf("+----------------------------------------+----------+\n"); | 
| - ::printf("| Name | Value |\n"); | 
| - ::printf("+----------------------------------------+----------+\n"); | 
| + ::printf("+----------------------------------------+-------------+\n"); | 
| + ::printf("| Name | Value |\n"); | 
| 
Kasper Lund
2008/12/22 09:52:13
Maybe 'Value' should be right justified?
 | 
| + ::printf("+----------------------------------------+-------------+\n"); | 
| for (CounterMap::iterator i = counter_map_.begin(); | 
| i != counter_map_.end(); | 
| i++) { | 
| Counter* counter = (*i).second; | 
| - ::printf("| %-38s | %8i |\n", (*i).first, counter->value()); | 
| + ::printf("| %-38s | %11i |\n", (*i).first, counter->value()); | 
| } | 
| - ::printf("+----------------------------------------+----------+\n"); | 
| + ::printf("+----------------------------------------+-------------+\n"); | 
| } | 
| if (counters_file_ != NULL) | 
| delete counters_file_; |