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

Unified Diff: src/mips/lithium-mips.h

Issue 10700115: Break Crankshaft into phases. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Review. 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
Index: src/mips/lithium-mips.h
diff --git a/src/mips/lithium-mips.h b/src/mips/lithium-mips.h
index 6c1af6350f8e798474bd08cafb58c1da7211a5f8..7acffcee77ef922be5dd25eedab59153fba7638f 100644
--- a/src/mips/lithium-mips.h
+++ b/src/mips/lithium-mips.h
@@ -2195,6 +2195,10 @@ class LChunk: public LChunkBase {
int GetNextSpillIndex(bool is_double);
LOperand* GetNextSpillSlot(bool is_double);
+
+ static LChunk* cast(LChunkBase* chunk_base) {
+ return reinterpret_cast<LChunk*>(chunk_base);
danno 2012/07/12 11:14:54 I am not sure if this (and others in ia32/x64/ARM)
sanjoy 2012/07/12 11:34:18 Done.
+ }
};

Powered by Google App Engine
This is Rietveld 408576698