| Index: runtime/vm/stub_code.h
 | 
| diff --git a/runtime/vm/stub_code.h b/runtime/vm/stub_code.h
 | 
| index e7da564b6b3ef075741fac31bf34b9cadb0b480b..1351b2b7f9ad2f35b8cf0b2bc23ccdbbbd61e710 100644
 | 
| --- a/runtime/vm/stub_code.h
 | 
| +++ b/runtime/vm/stub_code.h
 | 
| @@ -35,6 +35,7 @@ class SnapshotWriter;
 | 
|    V(OptimizeFunction)                                                          \
 | 
|    V(InvokeDartCode)                                                            \
 | 
|    V(DebugStepCheck)                                                            \
 | 
| +  V(ICLookup)                                                                  \
 | 
|    V(MegamorphicLookup)                                                         \
 | 
|    V(FixAllocationStubTarget)                                                   \
 | 
|    V(Deoptimize)                                                                \
 | 
| @@ -60,7 +61,7 @@ class SnapshotWriter;
 | 
|    V(Subtype1TestCache)                                                         \
 | 
|    V(Subtype2TestCache)                                                         \
 | 
|    V(Subtype3TestCache)                                                         \
 | 
| -  V(CallClosureNoSuchMethod)
 | 
| +  V(CallClosureNoSuchMethod)                                                   \
 | 
|  
 | 
|  // Is it permitted for the stubs above to refer to Object::null(), which is
 | 
|  // allocated in the VM isolate and shared across all isolates.
 | 
| @@ -136,8 +137,7 @@ class StubCode : public AllStatic {
 | 
|  
 | 
|    static const intptr_t kNoInstantiator = 0;
 | 
|  
 | 
| -  static void EmitMegamorphicLookup(
 | 
| -      Assembler*, Register recv, Register cache, Register target);
 | 
| +  static void EmitMegamorphicLookup(Assembler* assembler);
 | 
|  
 | 
|   private:
 | 
|    friend class MegamorphicCacheTable;
 | 
| 
 |