Chromium Code Reviews| 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.
|
| + } |
| }; |