| Index: src/serialize.cc
 | 
| diff --git a/src/serialize.cc b/src/serialize.cc
 | 
| index 12e9613e3e1f7ffa3ecd57009ee6faef9f59779a..a08378851a55eec46d8bb5cc826e21a321e1fd53 100644
 | 
| --- a/src/serialize.cc
 | 
| +++ b/src/serialize.cc
 | 
| @@ -131,7 +131,7 @@ void ExternalReferenceTable::AddFromId(TypeCode type,
 | 
|        address = ref.address();
 | 
|        break;
 | 
|      }
 | 
| -    case RUNTIME_FUNCTION: {
 | 
| +    case RUNTIME_FUNCTION_: {
 | 
|        ExternalReference ref(static_cast<Runtime::FunctionId>(id), isolate);
 | 
|        address = ref.address();
 | 
|        break;
 | 
| @@ -208,7 +208,7 @@ void ExternalReferenceTable::PopulateTable(Isolate* isolate) {
 | 
|  
 | 
|    // Runtime functions
 | 
|  #define RUNTIME_ENTRY(name, nargs, ressize) \
 | 
| -  { RUNTIME_FUNCTION, \
 | 
| +  { RUNTIME_FUNCTION_, \
 | 
|      Runtime::k##name, \
 | 
|      "Runtime::" #name },
 | 
|  
 | 
| 
 |