Reviewers: Benedikt Meurer,
Description:
Fix clang build; remove dead private field.
[email protected]
BUG=
Please review this at https://codereview.chromium.org/460683003/
SVN Base: https://v8.googlecode.com/svn/branches/bleeding_edge
Affected files (+1, -3 lines):
M src/compiler/scheduler.h
M src/compiler/scheduler.cc
Index: src/compiler/scheduler.cc
diff --git a/src/compiler/scheduler.cc b/src/compiler/scheduler.cc
index
8038ce650851fbbf1f759996ac373815a0bd2203..6a40091698c88d80f42f68694c767b7e2b29c61a
100644
--- a/src/compiler/scheduler.cc
+++ b/src/compiler/scheduler.cc
@@ -16,8 +16,7 @@ namespace internal {
namespace compiler {
Scheduler::Scheduler(Zone* zone, Graph* graph, Schedule* schedule)
- : zone_(zone),
- graph_(graph),
+ : graph_(graph),
schedule_(schedule),
branches_(NodeVector::allocator_type(zone)),
calls_(NodeVector::allocator_type(zone)),
Index: src/compiler/scheduler.h
diff --git a/src/compiler/scheduler.h b/src/compiler/scheduler.h
index
dabffff53947216f60dfe9a18b3fd8d033c44383..db620edb55c27d5b0651de74e6441709e3b5ec9e
100644
--- a/src/compiler/scheduler.h
+++ b/src/compiler/scheduler.h
@@ -29,7 +29,6 @@ class Scheduler {
static BasicBlockVector* ComputeSpecialRPO(Schedule* schedule);
private:
- Zone* zone_;
Graph* graph_;
Schedule* schedule_;
NodeVector branches_;
--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
---
You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.