Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(312)

Unified Diff: runtime/vm/object.cc

Issue 2056813002: Fix incorrect new-space allocations in the parser during background compilation (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: more fixes Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | runtime/vm/parser.cc » ('j') | runtime/vm/parser.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/object.cc
diff --git a/runtime/vm/object.cc b/runtime/vm/object.cc
index 5003e7e1123010340703167e50e3252ce2356933..18acb9c32f5cfe22fe9ce630b073d7a1f3192d27 100644
--- a/runtime/vm/object.cc
+++ b/runtime/vm/object.cc
@@ -18044,7 +18044,7 @@ RawMixinAppType* MixinAppType::New() {
// on new heap.
RawObject* raw = Object::Allocate(MixinAppType::kClassId,
MixinAppType::InstanceSize(),
- Heap::kNew);
+ Heap::kOld);
return reinterpret_cast<RawMixinAppType*>(raw);
}
« no previous file with comments | « no previous file | runtime/vm/parser.cc » ('j') | runtime/vm/parser.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698