| Index: runtime/vm/profiler_service.cc
|
| diff --git a/runtime/vm/profiler_service.cc b/runtime/vm/profiler_service.cc
|
| index 7ae43a530a20c82b6764b7996b7d39e433ee995e..bf47f206a1e86b62e3ab09b1a37245ad12c9bad7 100644
|
| --- a/runtime/vm/profiler_service.cc
|
| +++ b/runtime/vm/profiler_service.cc
|
| @@ -1238,7 +1238,7 @@ class ProfileBuilder : public ValueObject {
|
| current,
|
| i,
|
| (j == 0),
|
| - sample->first_frame_executing(),
|
| + sample->first_frame_executing() || sample->IsAllocationSample(),
|
| true);
|
| }
|
| }
|
| @@ -1266,7 +1266,7 @@ class ProfileBuilder : public ValueObject {
|
| current,
|
| i,
|
| (j == 0),
|
| - sample->first_frame_executing(),
|
| + sample->first_frame_executing() || sample->IsAllocationSample(),
|
| false);
|
| }
|
|
|
|
|