Index: src/ia32/lithium-ia32.h |
diff --git a/src/ia32/lithium-ia32.h b/src/ia32/lithium-ia32.h |
index a505e585ed7abc79a091a33d0ee8668109fd0c6a..b278c70b30a9c05349c96dfa7d1666ca63b5c14e 100644 |
--- a/src/ia32/lithium-ia32.h |
+++ b/src/ia32/lithium-ia32.h |
@@ -1849,8 +1849,7 @@ class LCallWithDescriptor V8_FINAL : public LTemplateResultInstruction<1> { |
LCallWithDescriptor(const CallInterfaceDescriptor* descriptor, |
ZoneList<LOperand*>& operands, |
Zone* zone) |
- : descriptor_(descriptor), |
- inputs_(descriptor->environment_length() + 1, zone) { |
+ : inputs_(descriptor->environment_length() + 1, zone) { |
ASSERT(descriptor->environment_length() + 1 == operands.length()); |
inputs_.AddAll(operands, zone); |
} |
@@ -1865,7 +1864,6 @@ class LCallWithDescriptor V8_FINAL : public LTemplateResultInstruction<1> { |
int arity() const { return hydrogen()->argument_count() - 1; } |
- const CallInterfaceDescriptor* descriptor_; |
ZoneList<LOperand*> inputs_; |
// Iterator support. |