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

Unified Diff: vm/code_descriptors.h

Issue 10785007: Minor changes based on the profile while running dart2js compile all. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/runtime/
Patch Set: Created 8 years, 5 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 | vm/flow_graph_compiler.cc » ('j') | vm/object.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: vm/code_descriptors.h
===================================================================
--- vm/code_descriptors.h (revision 9647)
+++ vm/code_descriptors.h (working copy)
@@ -21,7 +21,7 @@
intptr_t try_index; // Try block index of PC.
};
- DescriptorList() : list_() {
+ explicit DescriptorList(intptr_t initial_capacity) : list_(initial_capacity) {
}
~DescriptorList() { }
« no previous file with comments | « no previous file | vm/flow_graph_compiler.cc » ('j') | vm/object.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698