Index: src/x87/lithium-x87.h |
diff --git a/src/x87/lithium-x87.h b/src/x87/lithium-x87.h |
index 56d7c640ffcd42fdbf0db927b7a2c7e9f8f35d70..6466a73f47dfea1e333ef415fdd46c29adac073e 100644 |
--- a/src/x87/lithium-x87.h |
+++ b/src/x87/lithium-x87.h |
@@ -1906,10 +1906,9 @@ class LCallJSFunction V8_FINAL : public LTemplateInstruction<1, 1, 0> { |
class LCallWithDescriptor V8_FINAL : public LTemplateResultInstruction<1> { |
public: |
- LCallWithDescriptor(const InterfaceDescriptor* descriptor, |
- const ZoneList<LOperand*>& operands, |
- Zone* zone) |
- : inputs_(descriptor->GetRegisterParameterCount() + 1, zone) { |
+ LCallWithDescriptor(const CallInterfaceDescriptor* descriptor, |
+ const ZoneList<LOperand*>& operands, Zone* zone) |
+ : inputs_(descriptor->GetRegisterParameterCount() + 1, zone) { |
DCHECK(descriptor->GetRegisterParameterCount() + 1 == operands.length()); |
inputs_.AddAll(operands, zone); |
} |