From: bmeurer@chromium.org Date: Mon, 1 Jul 2013 12:11:29 +0000 (+0000) Subject: Fix compiler error about unused profiles_ field in ProfilerEventsProcessor. X-Git-Tag: upstream/4.7.83~13602 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=73d32d2fb7644efbd77f4f107cd585bfe40d5cd9;p=platform%2Fupstream%2Fv8.git Fix compiler error about unused profiles_ field in ProfilerEventsProcessor. BUG= R=jkummerow@chromium.org Review URL: https://codereview.chromium.org/18353002 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@15412 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- diff --git a/src/cpu-profiler.cc b/src/cpu-profiler.cc index bdb4ec4..1309604 100644 --- a/src/cpu-profiler.cc +++ b/src/cpu-profiler.cc @@ -49,7 +49,6 @@ ProfilerEventsProcessor::ProfilerEventsProcessor( ProfileGenerator* generator, CpuProfilesCollection* profiles) : Thread(Thread::Options("v8:ProfEvntProc", kProfilerStackSize)), generator_(generator), - profiles_(profiles), running_(true), ticks_buffer_(sizeof(TickSampleEventRecord), kTickSamplesBufferChunkSize, diff --git a/src/cpu-profiler.h b/src/cpu-profiler.h index c66f99e..1e8ac79 100644 --- a/src/cpu-profiler.h +++ b/src/cpu-profiler.h @@ -166,7 +166,6 @@ class ProfilerEventsProcessor : public Thread { bool ProcessTicks(unsigned dequeue_order); ProfileGenerator* generator_; - CpuProfilesCollection* profiles_; bool running_; UnboundQueue events_buffer_; SamplingCircularQueue ticks_buffer_;