Index: src/runtime.cc |
diff --git a/src/runtime.cc b/src/runtime.cc |
index 1aaa3cd92a70b10d8521ffde464cec500aecd393..c145ac80c8d1cfa177a1686acd91fc2a858d6767 100644 |
--- a/src/runtime.cc |
+++ b/src/runtime.cc |
@@ -14703,7 +14703,8 @@ RUNTIME_FUNCTION(Runtime_ListNatives) { |
int entry_count = 0 |
RUNTIME_FUNCTION_LIST(COUNT_ENTRY) |
RUNTIME_HIDDEN_FUNCTION_LIST(COUNT_ENTRY) |
- INLINE_FUNCTION_LIST(COUNT_ENTRY); |
+ INLINE_FUNCTION_LIST(COUNT_ENTRY) |
+ INLINE_OPTIMIZED_FUNCTION_LIST(COUNT_ENTRY); |
#undef COUNT_ENTRY |
Factory* factory = isolate->factory(); |
Handle<FixedArray> elements = factory->NewFixedArray(entry_count); |
@@ -14727,6 +14728,7 @@ RUNTIME_FUNCTION(Runtime_ListNatives) { |
} |
inline_runtime_functions = false; |
RUNTIME_FUNCTION_LIST(ADD_ENTRY) |
+ INLINE_OPTIMIZED_FUNCTION_LIST(ADD_ENTRY) |
// Calling hidden runtime functions should just throw. |
RUNTIME_HIDDEN_FUNCTION_LIST(ADD_ENTRY) |
inline_runtime_functions = true; |
@@ -15132,6 +15134,7 @@ RUNTIME_FUNCTION(Runtime_MaxSmi) { |
static const Runtime::Function kIntrinsicFunctions[] = { |
RUNTIME_FUNCTION_LIST(F) |
+ INLINE_OPTIMIZED_FUNCTION_LIST(F) |
RUNTIME_HIDDEN_FUNCTION_LIST(FH) |
INLINE_FUNCTION_LIST(I) |
INLINE_OPTIMIZED_FUNCTION_LIST(IO) |