Index: src/interface-descriptors.cc |
diff --git a/src/interface-descriptors.cc b/src/interface-descriptors.cc |
index 0526bf998655bb8c161209d51d6f10998c94e246..89ee9759a9575bd7732eb32346946d23ac535f08 100644 |
--- a/src/interface-descriptors.cc |
+++ b/src/interface-descriptors.cc |
@@ -117,16 +117,15 @@ Type::FunctionType* |
LoadGlobalViaContextDescriptor::BuildCallInterfaceDescriptorFunctionType( |
Isolate* isolate, int paramater_count) { |
Type::FunctionType* function = Type::FunctionType::New( |
- AnyTagged(), Type::Undefined(), 2, isolate->interface_descriptor_zone()); |
+ AnyTagged(), Type::Undefined(), 1, isolate->interface_descriptor_zone()); |
function->InitParameter(0, UntaggedSigned32()); |
- function->InitParameter(1, AnyTagged()); |
return function; |
} |
void LoadGlobalViaContextDescriptor::InitializePlatformSpecific( |
CallInterfaceDescriptorData* data) { |
- Register registers[] = {SlotRegister(), NameRegister()}; |
+ Register registers[] = {SlotRegister()}; |
data->InitializePlatformSpecific(arraysize(registers), registers); |
} |
@@ -135,17 +134,16 @@ Type::FunctionType* |
StoreGlobalViaContextDescriptor::BuildCallInterfaceDescriptorFunctionType( |
Isolate* isolate, int paramater_count) { |
Type::FunctionType* function = Type::FunctionType::New( |
- AnyTagged(), Type::Undefined(), 3, isolate->interface_descriptor_zone()); |
+ AnyTagged(), Type::Undefined(), 2, isolate->interface_descriptor_zone()); |
function->InitParameter(0, UntaggedSigned32()); |
function->InitParameter(1, AnyTagged()); |
- function->InitParameter(2, AnyTagged()); |
return function; |
} |
void StoreGlobalViaContextDescriptor::InitializePlatformSpecific( |
CallInterfaceDescriptorData* data) { |
- Register registers[] = {SlotRegister(), NameRegister(), ValueRegister()}; |
+ Register registers[] = {SlotRegister(), ValueRegister()}; |
data->InitializePlatformSpecific(arraysize(registers), registers); |
} |