Index: src/lithium.h |
diff --git a/src/lithium.h b/src/lithium.h |
index ab34453beff6015a37dc9a00afc02e4251f93414..200773ab3aa03db0f347416d6e4d68f6a4b6d9eb 100644 |
--- a/src/lithium.h |
+++ b/src/lithium.h |
@@ -778,6 +778,20 @@ enum NumberUntagDMode { |
}; |
+class LPhase : public CompilationPhase { |
+ public: |
+ LPhase(const char* name, LChunk* chunk) |
+ : CompilationPhase(name, chunk->isolate(), chunk->zone()), |
+ chunk_(chunk) { } |
+ ~LPhase(); |
+ |
+ private: |
+ LChunk* chunk_; |
+ |
+ DISALLOW_COPY_AND_ASSIGN(LPhase); |
+}; |
+ |
+ |
} } // namespace v8::internal |
#endif // V8_LITHIUM_H_ |