| Index: src/runtime/runtime.cc
|
| diff --git a/src/runtime/runtime.cc b/src/runtime/runtime.cc
|
| index bd69fae31868545aadaa6ea7e3104534eb8a5f3c..776239aa4283233e04cb85576f7bc53c598a9ede 100644
|
| --- a/src/runtime/runtime.cc
|
| +++ b/src/runtime/runtime.cc
|
| @@ -14,20 +14,13 @@ namespace internal {
|
| #define F(name, number_of_args, result_size) \
|
| Object* Runtime_##name(int args_length, Object** args_object, \
|
| Isolate* isolate);
|
| +FOR_EACH_INTRINSIC_RETURN_OBJECT(F)
|
| +#undef F
|
|
|
| #define P(name, number_of_args, result_size) \
|
| ObjectPair Runtime_##name(int args_length, Object** args_object, \
|
| Isolate* isolate);
|
| -
|
| -RUNTIME_FUNCTION_LIST_RETURN_OBJECT(F)
|
| -RUNTIME_FUNCTION_LIST_RETURN_PAIR(P)
|
| -INLINE_OPTIMIZED_FUNCTION_LIST(F)
|
| -// Reference implementation for inlined runtime functions. Only used when the
|
| -// compiler does not support a certain intrinsic. Don't optimize these, but
|
| -// implement the intrinsic in the respective compiler instead.
|
| -INLINE_FUNCTION_LIST(F)
|
| -
|
| -#undef F
|
| +FOR_EACH_INTRINSIC_RETURN_PAIR(P)
|
| #undef P
|
|
|
|
|
|
|