| Index: runtime/vm/native_arguments.h
 | 
| diff --git a/runtime/vm/native_arguments.h b/runtime/vm/native_arguments.h
 | 
| index 431692602eca19a4a1f45ca0987a869c9834bd5e..2f94d8f06bd0aae74bcf3edc1943e830017ab39a 100644
 | 
| --- a/runtime/vm/native_arguments.h
 | 
| +++ b/runtime/vm/native_arguments.h
 | 
| @@ -44,10 +44,11 @@ class Thread;
 | 
|  }
 | 
|  #endif
 | 
|  
 | 
| +void VerifyOnTransition();
 | 
| +
 | 
|  #define VERIFY_ON_TRANSITION                                                   \
 | 
|    if (FLAG_verify_on_transition) {                                             \
 | 
| -    VerifyPointersVisitor::VerifyPointers();                                   \
 | 
| -    Isolate::Current()->heap()->Verify();                                      \
 | 
| +    VerifyOnTransition();                                                      \
 | 
|    }
 | 
|  #define DEOPTIMIZE_ALOT                                                        \
 | 
|    if (FLAG_deoptimize_alot) {                                                  \
 | 
| 
 |