| Index: src/ia32/stub-cache-ia32.cc
|
| ===================================================================
|
| --- src/ia32/stub-cache-ia32.cc (revision 6095)
|
| +++ src/ia32/stub-cache-ia32.cc (working copy)
|
| @@ -2144,8 +2144,8 @@
|
| // -----------------------------------
|
|
|
| SharedFunctionInfo* function_info = function->shared();
|
| - if (function_info->HasCustomCallGenerator()) {
|
| - const int id = function_info->custom_call_generator_id();
|
| + if (function_info->HasBuiltinFunctionId()) {
|
| + BuiltinFunctionId id = function_info->builtin_function_id();
|
| MaybeObject* maybe_result = CompileCustomCall(
|
| id, object, holder, NULL, function, name);
|
| Object* result;
|
| @@ -2386,8 +2386,8 @@
|
| // -----------------------------------
|
|
|
| SharedFunctionInfo* function_info = function->shared();
|
| - if (function_info->HasCustomCallGenerator()) {
|
| - const int id = function_info->custom_call_generator_id();
|
| + if (function_info->HasBuiltinFunctionId()) {
|
| + BuiltinFunctionId id = function_info->builtin_function_id();
|
| MaybeObject* maybe_result = CompileCustomCall(
|
| id, object, holder, cell, function, name);
|
| Object* result;
|
|
|