Index: src/ia32/interface-descriptors-ia32.cc |
diff --git a/src/ia32/interface-descriptors-ia32.cc b/src/ia32/interface-descriptors-ia32.cc |
index 821e57d3455090801fdbf27628a04ac1d7d95fdf..0fea67b76f6ae4f2e2e1519dc827f44f338b89fb 100644 |
--- a/src/ia32/interface-descriptors-ia32.cc |
+++ b/src/ia32/interface-descriptors-ia32.cc |
@@ -389,6 +389,18 @@ void MathRoundVariantCallFromOptimizedCodeDescriptor:: |
}; |
data->InitializePlatformSpecific(arraysize(registers), registers); |
} |
+ |
+ |
+void PushArgsAndCallDescriptor::InitializePlatformSpecific( |
+ CallInterfaceDescriptorData* data) { |
+ Register registers[] = { |
+ eax, // argument count (including receiver) |
+ ebx, // address of first argument |
+ edi // the target callable to be call |
+ }; |
+ data->InitializePlatformSpecific(arraysize(registers), registers); |
+} |
+ |
} // namespace internal |
} // namespace v8 |