| Index: runtime/vm/native_entry.h
 | 
| diff --git a/runtime/vm/native_entry.h b/runtime/vm/native_entry.h
 | 
| index 25dee390c9ee7a8ff8f13a5ce7936f4735464e06..e9dab6cdef16a3653cb7acc11a861c52b2333d3c 100644
 | 
| --- a/runtime/vm/native_entry.h
 | 
| +++ b/runtime/vm/native_entry.h
 | 
| @@ -54,6 +54,7 @@ typedef void (*NativeFunction)(NativeArguments* arguments);
 | 
|        Thread* thread = arguments->thread();                                    \
 | 
|        ASSERT(thread == Thread::Current());                                     \
 | 
|        Isolate* isolate = thread->isolate();                                    \
 | 
| +      TransitionGeneratedToVM transition(thread);                              \
 | 
|        StackZone zone(thread);                                                  \
 | 
|        SET_NATIVE_RETVAL(arguments,                                             \
 | 
|                          DN_Helper##name(isolate,                               \
 | 
| 
 |