Index: src/compiler/js-context-specialization.h |
diff --git a/src/compiler/js-context-specialization.h b/src/compiler/js-context-specialization.h |
index c524eb7b560f36da73d2920ed917f5d33a3094e4..f58eaa6848da86ce7cfba66fe38c2e49592f57e9 100644 |
--- a/src/compiler/js-context-specialization.h |
+++ b/src/compiler/js-context-specialization.h |
@@ -17,8 +17,7 @@ namespace compiler { |
// some {LoadContext} nodes or strength reducing some {StoreContext} nodes. |
class JSContextSpecializer : public Reducer { |
public: |
- JSContextSpecializer(Handle<Context> ctx, JSGraph* jsgraph, Node* context) |
- : ctx_(ctx), jsgraph_(jsgraph), context_(context) {} |
+ explicit JSContextSpecializer(JSGraph* jsgraph) : jsgraph_(jsgraph) {} |
Reduction Reduce(Node* node) OVERRIDE; |
@@ -27,9 +26,7 @@ class JSContextSpecializer : public Reducer { |
Reduction ReduceJSStoreContext(Node* node); |
private: |
- Handle<Context> ctx_; |
JSGraph* jsgraph_; |
- Node* context_; |
}; |
} |
} |