Chromium Code Reviews| Index: src/serialize.cc |
| diff --git a/src/serialize.cc b/src/serialize.cc |
| index b5cb478cdfde65a3663bd9757d26fb291bb0c615..0adeb027de14b8aae51dac4bd1633a4bdcdc3f89 100644 |
| --- a/src/serialize.cc |
| +++ b/src/serialize.cc |
| @@ -154,14 +154,6 @@ void ExternalReferenceTable::PopulateTable(Isolate* isolate) { |
| INLINE_OPTIMIZED_FUNCTION_LIST(RUNTIME_ENTRY) |
| #undef RUNTIME_ENTRY |
| -#define RUNTIME_HIDDEN_ENTRY(name, nargs, ressize) \ |
| - { RUNTIME_FUNCTION, \ |
| - Runtime::kHidden##name, \ |
| - "Runtime::Hidden" #name }, |
| - |
| - RUNTIME_HIDDEN_FUNCTION_LIST(RUNTIME_HIDDEN_ENTRY) |
| -#undef RUNTIME_HIDDEN_ENTRY |
| - |
| #define INLINE_OPTIMIZED_ENTRY(name, nargs, ressize) \ |
| { RUNTIME_FUNCTION, \ |
| Runtime::kInlineOptimized##name, \ |
| @@ -460,12 +452,12 @@ void ExternalReferenceTable::PopulateTable(Isolate* isolate) { |
| UNCLASSIFIED, |
| 52, |
| "cpu_features"); |
| - Add(ExternalReference(Runtime::kHiddenAllocateInNewSpace, isolate).address(), |
| + Add(ExternalReference(Runtime::kAllocateInNewSpace, isolate).address(), |
| UNCLASSIFIED, |
| 53, |
| "Runtime::AllocateInNewSpace"); |
| Add(ExternalReference( |
|
Michael Starzinger
2014/06/24 13:06:05
nit: This should also fit into line again. Clang-f
danno
2014/06/24 16:22:48
Done.
|
| - Runtime::kHiddenAllocateInTargetSpace, isolate).address(), |
| + Runtime::kAllocateInTargetSpace, isolate).address(), |
| UNCLASSIFIED, |
| 54, |
| "Runtime::AllocateInTargetSpace"); |