Chromium Code Reviews| Index: src/heap.h |
| =================================================================== |
| --- src/heap.h (revision 8400) |
| +++ src/heap.h (working copy) |
| @@ -894,14 +894,14 @@ |
| inline void increment_scan_on_scavenge_pages() { |
| scan_on_scavenge_pages_++; |
| - if (FLAG_trace_gc_verbose) { |
|
Vyacheslav Egorov (Chromium)
2011/06/23 14:50:16
why revert this?
|
| + if (FLAG_trace_gc) { |
| PrintF("Scan-on-scavenge pages: %d\n", scan_on_scavenge_pages_); |
| } |
| } |
| inline void decrement_scan_on_scavenge_pages() { |
| scan_on_scavenge_pages_--; |
| - if (FLAG_trace_gc_verbose) { |
| + if (FLAG_trace_gc) { |
| PrintF("Scan-on-scavenge pages: %d\n", scan_on_scavenge_pages_); |
| } |
| } |