Index: src/runtime.cc |
diff --git a/src/runtime.cc b/src/runtime.cc |
index 306042f4ea65601e0e4ed3c5fe57ee08937be87c..71e64404084b6599d23f42d59dc1857b4ac24adc 100644 |
--- a/src/runtime.cc |
+++ b/src/runtime.cc |
@@ -14529,8 +14529,7 @@ RUNTIME_FUNCTION(MaybeObject*, Runtime_ListNatives) { |
#define COUNT_ENTRY(Name, argc, ressize) + 1 |
int entry_count = 0 |
RUNTIME_FUNCTION_LIST(COUNT_ENTRY) |
- INLINE_FUNCTION_LIST(COUNT_ENTRY) |
- INLINE_RUNTIME_FUNCTION_LIST(COUNT_ENTRY); |
+ INLINE_FUNCTION_LIST(COUNT_ENTRY); |
#undef COUNT_ENTRY |
Factory* factory = isolate->factory(); |
Handle<FixedArray> elements = factory->NewFixedArray(entry_count); |
@@ -14558,7 +14557,6 @@ RUNTIME_FUNCTION(MaybeObject*, Runtime_ListNatives) { |
RUNTIME_FUNCTION_LIST(ADD_ENTRY) |
inline_runtime_functions = true; |
INLINE_FUNCTION_LIST(ADD_ENTRY) |
- INLINE_RUNTIME_FUNCTION_LIST(ADD_ENTRY) |
#undef ADD_ENTRY |
ASSERT_EQ(index, entry_count); |
Handle<JSArray> result = factory->NewJSArrayWithElements(elements); |
@@ -14903,9 +14901,11 @@ RUNTIME_FUNCTION(MaybeObject*, Runtime_MaxSmi) { |
static const Runtime::Function kIntrinsicFunctions[] = { |
RUNTIME_FUNCTION_LIST(F) |
INLINE_FUNCTION_LIST(I) |
- INLINE_RUNTIME_FUNCTION_LIST(I) |
}; |
+#undef I |
+#undef F |
+ |
MaybeObject* Runtime::InitializeIntrinsicFunctionNames(Heap* heap, |
Object* dictionary) { |