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

Unified Diff: runtime/vm/flow_graph_compiler.h

Issue 317273005: VM: Make ZoneAllocated-objects that don't need a vtable smaller. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 6 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 | « runtime/vm/ast.h ('k') | runtime/vm/intermediate_language.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/flow_graph_compiler.h
===================================================================
--- runtime/vm/flow_graph_compiler.h (revision 36989)
+++ runtime/vm/flow_graph_compiler.h (working copy)
@@ -118,6 +118,7 @@
deopt_env_(deopt_env) {
ASSERT(deopt_env != NULL);
}
+ virtual ~CompilerDeoptInfo() { }
RawDeoptInfo* CreateDeoptInfo(FlowGraphCompiler* compiler,
DeoptInfoBuilder* builder,
@@ -173,6 +174,7 @@
class SlowPathCode : public ZoneAllocated {
public:
SlowPathCode() : entry_label_(), exit_label_() { }
+ virtual ~SlowPathCode() { }
Label* entry_label() { return &entry_label_; }
Label* exit_label() { return &exit_label_; }
« no previous file with comments | « runtime/vm/ast.h ('k') | runtime/vm/intermediate_language.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698