| Index: src/ia32/lithium-ia32.h
|
| diff --git a/src/ia32/lithium-ia32.h b/src/ia32/lithium-ia32.h
|
| index 4206482de75c5c73a365a9eef31f02c2aad6ccd3..730975a9c35a972e31f2626c916c6114cb809992 100644
|
| --- a/src/ia32/lithium-ia32.h
|
| +++ b/src/ia32/lithium-ia32.h
|
| @@ -1891,10 +1891,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);
|
| }
|
|
|