Do not combine by default in allocations profile

Change-Id: Idaf9de685f7c0473d4e0a597959e6bca0df6077b
Reviewed-on: https://dart-review.googlesource.com/3823
Reviewed-by: Ryan Macnak <rmacnak@google.com>
This commit is contained in:
Carlo Bernaschina 2017-09-06 17:55:30 -07:00 committed by Ryan Macnak
parent d0233a3b9a
commit 9f545cd315

View file

@ -9,7 +9,7 @@ class AllocationProfileRepository implements M.AllocationProfileRepository {
static const _defaultsApi = '_getDefaultClassesAliases';
Future<M.AllocationProfile> get(M.IsolateRef i,
{bool gc: false, bool reset: false, bool combine: true}) async {
{bool gc: false, bool reset: false, bool combine: false}) async {
assert(gc != null);
assert(reset != null);
S.Isolate isolate = i as S.Isolate;