| Index: src/mips/lithium-codegen-mips.h
|
| diff --git a/src/mips/lithium-codegen-mips.h b/src/mips/lithium-codegen-mips.h
|
| index 148273dbf9236cdaa47899d7203be07c3e5a0259..a1953e14ad04b7817e12ab81077ace5f5822ee44 100644
|
| --- a/src/mips/lithium-codegen-mips.h
|
| +++ b/src/mips/lithium-codegen-mips.h
|
| @@ -43,9 +43,9 @@ class SafepointGenerator;
|
|
|
| class LCodeGen BASE_EMBEDDED {
|
| public:
|
| - LCodeGen(LChunk* chunk, MacroAssembler* assembler, CompilationInfo* info)
|
| + LCodeGen(LChunkBase* chunk, MacroAssembler* assembler, CompilationInfo* info)
|
| : zone_(info->zone()),
|
| - chunk_(chunk),
|
| + chunk_(static_cast<LChunk*>(chunk)),
|
| masm_(assembler),
|
| info_(info),
|
| current_block_(-1),
|
|
|