Revision: 11006 Author: [email protected] Date: Mon Mar 12 05:17:46 2012 Log: Fix missing initialization of mark-compact flags.
[email protected] Review URL: https://chromiumcodereview.appspot.com/9662056 http://code.google.com/p/v8/source/detail?r=11006 Modified: /branches/bleeding_edge/src/mark-compact.cc ======================================= --- /branches/bleeding_edge/src/mark-compact.cc Wed Mar 7 09:52:16 2012 +++ /branches/bleeding_edge/src/mark-compact.cc Mon Mar 12 05:17:46 2012 @@ -60,6 +60,8 @@ state_(IDLE), #endif sweep_precisely_(false), + reduce_memory_footprint_(false), + abort_incremental_marking_(false), compacting_(false), was_marked_incrementally_(false), collect_maps_(FLAG_collect_maps), -- v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev
