| Index: runtime/vm/pages.cc
|
| ===================================================================
|
| --- runtime/vm/pages.cc (revision 41358)
|
| +++ runtime/vm/pages.cc (working copy)
|
| @@ -35,13 +35,13 @@
|
| "Emit a log message when pointers to unused code are dropped.");
|
| DEFINE_FLAG(bool, always_drop_code, false,
|
| "Always try to drop code if the function's usage counter is >= 0");
|
| -#if defined(TARGET_ARCH_IA32)
|
| +#if defined(TARGET_ARCH_IA32) || defined(TARGET_ARCH_ARM)
|
| DEFINE_FLAG(bool, concurrent_sweep, true,
|
| "Concurrent sweep for old generation.");
|
| -#else // TARGET_ARCH_IA32
|
| +#else // TARGET_ARCH_IA32 || TARGET_ARCH_ARM
|
| DEFINE_FLAG(bool, concurrent_sweep, false,
|
| "Concurrent sweep for old generation.");
|
| -#endif // TARGET_ARCH_IA32
|
| +#endif // TARGET_ARCH_IA32 || TARGET_ARCH_ARM
|
| DEFINE_FLAG(bool, log_growth, false, "Log PageSpace growth policy decisions.");
|
|
|
| HeapPage* HeapPage::Initialize(VirtualMemory* memory, PageType type) {
|
|
|