Index: runtime/vm/intermediate_language.h |
=================================================================== |
--- runtime/vm/intermediate_language.h (revision 36988) |
+++ runtime/vm/intermediate_language.h (working copy) |
@@ -444,6 +444,8 @@ |
// another compile type. |
class ConstrainedCompileType : public ZoneCompileType { |
public: |
+ virtual ~ConstrainedCompileType() { } |
+ |
// Recompute compile type. |
virtual void Update() = 0; |
@@ -821,6 +823,8 @@ |
locs_(NULL), |
place_id_(kNoPlaceId) { } |
+ virtual ~Instruction() { } |
+ |
virtual Tag tag() const = 0; |
intptr_t deopt_id() const { |