| Index: src/x64/stub-cache-x64.cc
|
| ===================================================================
|
| --- src/x64/stub-cache-x64.cc (revision 6095)
|
| +++ src/x64/stub-cache-x64.cc (working copy)
|
| @@ -952,8 +952,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;
|
| @@ -1841,8 +1841,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;
|
|
|