| Index: src/runtime/runtime.cc
|
| diff --git a/src/runtime/runtime.cc b/src/runtime/runtime.cc
|
| index 6222cb4c35dbc4ce2ff6435ceb8853df08ee982f..9ec3f4c8f982b44745d6fefd26830dfbdeaae644 100644
|
| --- a/src/runtime/runtime.cc
|
| +++ b/src/runtime/runtime.cc
|
| @@ -47,19 +47,10 @@ INLINE_FUNCTION_LIST(F)
|
| ,
|
|
|
|
|
| -#define IO(name, number_of_args, result_size) \
|
| - { \
|
| - Runtime::kInlineOptimized##name, Runtime::INLINE_OPTIMIZED, "_" #name, \
|
| - FUNCTION_ADDR(Runtime_##name), number_of_args, result_size \
|
| - } \
|
| - ,
|
| -
|
| -
|
| static const Runtime::Function kIntrinsicFunctions[] = {
|
| RUNTIME_FUNCTION_LIST(F) INLINE_OPTIMIZED_FUNCTION_LIST(F)
|
| - INLINE_FUNCTION_LIST(I) INLINE_OPTIMIZED_FUNCTION_LIST(IO)};
|
| + INLINE_FUNCTION_LIST(I) INLINE_OPTIMIZED_FUNCTION_LIST(I)};
|
|
|
| -#undef IO
|
| #undef I
|
| #undef F
|
|
|
|
|