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

Unified Diff: src/transitions-inl.h

Issue 1513313003: Pretenure prototype transitions array. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years 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 | « src/transitions.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/transitions-inl.h
diff --git a/src/transitions-inl.h b/src/transitions-inl.h
index 62c7a43b100da52a4906d2cb5d21994970e3b643..96d9495bf404cecb30760e01551bbd22a1fd7277 100644
--- a/src/transitions-inl.h
+++ b/src/transitions-inl.h
@@ -37,10 +37,9 @@ FixedArray* TransitionArray::GetPrototypeTransitions() {
}
-void TransitionArray::SetPrototypeTransitions(FixedArray* transitions,
- WriteBarrierMode mode) {
+void TransitionArray::SetPrototypeTransitions(FixedArray* transitions) {
DCHECK(transitions->IsFixedArray());
- set(kPrototypeTransitionsIndex, transitions, mode);
+ set(kPrototypeTransitionsIndex, transitions);
}
« no previous file with comments | « src/transitions.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698