| Index: src/ia32/interface-descriptors-ia32.cc
 | 
| diff --git a/src/ia32/interface-descriptors-ia32.cc b/src/ia32/interface-descriptors-ia32.cc
 | 
| index b36cf63b874b12ef9d70255dc47956b138c11858..9a0da7d4cddce6c5e3d14a86e1b37a360eb00c16 100644
 | 
| --- a/src/ia32/interface-descriptors-ia32.cc
 | 
| +++ b/src/ia32/interface-descriptors-ia32.cc
 | 
| @@ -440,6 +440,18 @@ void InterpreterPushArgsAndCallDescriptor::InitializePlatformSpecific(
 | 
|    data->InitializePlatformSpecific(arraysize(registers), registers);
 | 
|  }
 | 
|  
 | 
| +void InterpreterPushArgsAndCallICDescriptor::InitializePlatformSpecific(
 | 
| +    CallInterfaceDescriptorData* data) {
 | 
| +  Register registers[] = {
 | 
| +      eax,  // argument count (not including receiver)
 | 
| +      ebx,  // address of first argument
 | 
| +      edi,  // the target callable to be call
 | 
| +      edx,  // feedback vector slot id
 | 
| +      ecx   // type feedback vector
 | 
| +  };
 | 
| +  data->InitializePlatformSpecific(arraysize(registers), registers);
 | 
| +}
 | 
| +
 | 
|  void InterpreterPushArgsAndConstructDescriptor::InitializePlatformSpecific(
 | 
|      CallInterfaceDescriptorData* data) {
 | 
|    Register registers[] = {
 | 
| 
 |