Index: src/compiler.h |
diff --git a/src/compiler.h b/src/compiler.h |
index 6ecc3ecf17931367454407ce84309a89ba667344..2f1897af16c99d3325830ff83904dfe1b1f2eb85 100644 |
--- a/src/compiler.h |
+++ b/src/compiler.h |
@@ -571,7 +571,8 @@ class CompilationInfo { |
// Each of the three phases can either fail, bail-out to full code generator or |
// succeed. Apart from their return value, the status of the phase last run can |
// be checked using {last_status()} as well. |
-class OptimizedCompileJob: public ZoneObject { |
+// TODO(mstarzinger): Make CompilationInfo base embedded. |
+class OptimizedCompileJob { |
public: |
explicit OptimizedCompileJob(CompilationInfo* info, const char* compiler_name) |
: info_(info), compiler_name_(compiler_name), last_status_(SUCCEEDED) {} |