| Index: runtime/vm/pages.cc
|
| ===================================================================
|
| --- runtime/vm/pages.cc (revision 43676)
|
| +++ runtime/vm/pages.cc (working copy)
|
| @@ -499,7 +499,9 @@
|
|
|
|
|
| void PageSpace::MakeIterable() const {
|
| - // TODO(koda): Assert not called from concurrent sweeper task.
|
| + // Assert not called from concurrent sweeper task.
|
| + // TODO(koda): Use thread/task identity when implemented.
|
| + ASSERT(Isolate::Current()->heap() != NULL);
|
| if (bump_top_ < bump_end_) {
|
| FreeListElement::AsElement(bump_top_, bump_end_ - bump_top_);
|
| }
|
|
|