diff options
author | mstarzinger@chromium.org <mstarzinger@chromium.org> | 2012-03-12 12:17:46 +0000 |
---|---|---|
committer | Ben Noordhuis <info@bnoordhuis.nl> | 2012-03-28 13:04:56 +0200 |
commit | eb1ff034183b5178b26bb0d302e60e85b9dc3e20 (patch) | |
tree | 9725f2c2b666ae8cd66c7a1430d2231bd4ec5159 /deps/v8/src | |
parent | 208b2307440f95946b232c6a23e2547b7dd94e89 (diff) | |
download | node-eb1ff034183b5178b26bb0d302e60e85b9dc3e20.tar.gz |
v8: Fix missing initialization of mark-compact flags.
R=svenpanne@chromium.org
Review URL: https://chromiumcodereview.appspot.com/9662056
Cherry-pick of https://v8.googlecode.com/svn/branches/bleeding_edge@11006
Diffstat (limited to 'deps/v8/src')
-rw-r--r-- | deps/v8/src/mark-compact.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/deps/v8/src/mark-compact.cc b/deps/v8/src/mark-compact.cc index 94f10919a..17be2234c 100644 --- a/deps/v8/src/mark-compact.cc +++ b/deps/v8/src/mark-compact.cc @@ -60,6 +60,8 @@ MarkCompactCollector::MarkCompactCollector() : // NOLINT 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), |