| Index: runtime/vm/profiler.cc
|
| diff --git a/runtime/vm/profiler.cc b/runtime/vm/profiler.cc
|
| index 529b3d31f711867b6b467131d39a5da76c53e615..f3f8ec308a57b919869df9d8fda16646f29bf392 100644
|
| --- a/runtime/vm/profiler.cc
|
| +++ b/runtime/vm/profiler.cc
|
| @@ -712,7 +712,6 @@ static void CollectSample(Isolate* isolate,
|
| // We are executing Dart code. We have frame pointers.
|
| dart_stack_walker->walk();
|
| } else {
|
| - sample->set_vm_tag(VMTag::kEmbedderTagId);
|
| sample->SetAt(0, pc);
|
| }
|
|
|
| @@ -923,7 +922,6 @@ void Profiler::SampleAllocation(Thread* thread, intptr_t cid) {
|
| uintptr_t pc = GetProgramCounter();
|
| Sample* sample = SetupSample(thread, sample_buffer, os_thread->id());
|
| sample->SetAllocationCid(cid);
|
| - sample->set_vm_tag(VMTag::kEmbedderTagId);
|
| sample->SetAt(0, pc);
|
| }
|
| }
|
|
|