Index: src/x64/lithium-x64.h |
diff --git a/src/x64/lithium-x64.h b/src/x64/lithium-x64.h |
index bbb0c96ad92b8795cb9d8ba0ee390d4f0fcbeb05..a8291473bd31cc8f72a8db698553973093d2c86c 100644 |
--- a/src/x64/lithium-x64.h |
+++ b/src/x64/lithium-x64.h |
@@ -1877,10 +1877,10 @@ class LCallJSFunction FINAL : public LTemplateInstruction<1, 1, 0> { |
class LCallWithDescriptor FINAL : public LTemplateResultInstruction<1> { |
public: |
- LCallWithDescriptor(const CallInterfaceDescriptor* descriptor, |
+ LCallWithDescriptor(CallInterfaceDescriptor descriptor, |
const ZoneList<LOperand*>& operands, Zone* zone) |
- : inputs_(descriptor->GetRegisterParameterCount() + 1, zone) { |
- DCHECK(descriptor->GetRegisterParameterCount() + 1 == operands.length()); |
+ : inputs_(descriptor.GetRegisterParameterCount() + 1, zone) { |
+ DCHECK(descriptor.GetRegisterParameterCount() + 1 == operands.length()); |
inputs_.AddAll(operands, zone); |
} |