Index: src/cpu-profiler.cc |
diff --git a/src/cpu-profiler.cc b/src/cpu-profiler.cc |
index 2b62212eeb2f9e93d2e2e8c7aaa5e6f6eb9479e1..eb25e9fafc023729350598474b382cc1e3d5ced3 100644 |
--- a/src/cpu-profiler.cc |
+++ b/src/cpu-profiler.cc |
@@ -186,9 +186,6 @@ void ProfilerEventsProcessor::AddCurrentStack() { |
Isolate* isolate = Isolate::Current(); |
sample->state = isolate->current_vm_state(); |
sample->pc = reinterpret_cast<Address>(sample); // Not NULL. |
- sample->tos = NULL; |
- sample->has_external_callback = false; |
- sample->frames_count = 0; |
for (StackTraceFrameIterator it(isolate); |
!it.done() && sample->frames_count < TickSample::kMaxFramesCount; |
it.Advance()) { |