| Index: src/builtins.h
 | 
| diff --git a/src/builtins.h b/src/builtins.h
 | 
| index 8a07b22a9868a5f5e572c082857a7305c0deafc7..992e953dcf04d52654507e07e9281f5eb0ca4248 100644
 | 
| --- a/src/builtins.h
 | 
| +++ b/src/builtins.h
 | 
| @@ -341,8 +341,10 @@ inline bool operator&(BuiltinExtraArguments lhs, BuiltinExtraArguments rhs) {
 | 
|    V(AtomicsStore, 4)
 | 
|  
 | 
|  // Define list of builtins implemented in TurboFan (with CallStub linkage).
 | 
| -#define BUILTIN_LIST_S(V)                                  \
 | 
| -  V(LoadIC_Miss, BUILTIN, kNoExtraICState, LoadWithVector) \
 | 
| +#define BUILTIN_LIST_S(V)                                         \
 | 
| +  V(LoadGlobalIC_Miss, BUILTIN, kNoExtraICState, LoadGlobal)      \
 | 
| +  V(LoadGlobalIC_Slow, HANDLER, Code::LOAD_GLOBAL_IC, LoadGlobal) \
 | 
| +  V(LoadIC_Miss, BUILTIN, kNoExtraICState, LoadWithVector)        \
 | 
|    V(LoadIC_Slow, HANDLER, Code::LOAD_IC, LoadWithVector)
 | 
|  
 | 
|  // Define list of builtin handlers implemented in assembly.
 | 
| 
 |