Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(414)

Unified Diff: src/objects-inl.h

Issue 234873004: Gcstress bug fix: Transition arrays may get smaller during gc. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | src/transitions.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/objects-inl.h
diff --git a/src/objects-inl.h b/src/objects-inl.h
index 524dfbe698734edc85ea34d63ba2b8aaa00fb1b6..b89b31dd736883743b07569373277885880c7a3e 100644
--- a/src/objects-inl.h
+++ b/src/objects-inl.h
@@ -4969,8 +4969,7 @@ static void EnsureHasTransitionArray(Handle<Map> map) {
transitions = TransitionArray::Allocate(map->GetIsolate(), 0);
transitions->set_back_pointer_storage(map->GetBackPointer());
} else if (!map->transitions()->IsFullTransitionArray()) {
- transitions = TransitionArray::ExtendToFullTransitionArray(
- handle(map->transitions()));
+ transitions = TransitionArray::ExtendToFullTransitionArray(map);
} else {
return;
}
« no previous file with comments | « no previous file | src/transitions.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698