| Index: runtime/vm/verifier.cc | 
| =================================================================== | 
| --- runtime/vm/verifier.cc	(revision 41609) | 
| +++ runtime/vm/verifier.cc	(working copy) | 
| @@ -46,6 +46,7 @@ | 
|  | 
| void VerifyPointersVisitor::VisitPointers(RawObject** first, RawObject** last) { | 
| for (RawObject** current = first; current <= last; current++) { | 
| +    VerifiedMemory::Verify(reinterpret_cast<uword>(current), kWordSize); | 
| RawObject* raw_obj = *current; | 
| if (raw_obj->IsHeapObject()) { | 
| if (!allocated_set_->Contains(raw_obj)) { | 
|  |