| Index: src/mips/lithium-codegen-mips.h
|
| diff --git a/src/mips/lithium-codegen-mips.h b/src/mips/lithium-codegen-mips.h
|
| index a1953e14ad04b7817e12ab81077ace5f5822ee44..a2125d70b8b662c843ac59436d10e89785b9c6ba 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(LChunkBase* chunk, MacroAssembler* assembler, CompilationInfo* info)
|
| + LCodeGen(LChunk* chunk, MacroAssembler* assembler, CompilationInfo* info)
|
| : zone_(info->zone()),
|
| - chunk_(static_cast<LChunk*>(chunk)),
|
| + chunk_(static_cast<LPlatformChunk*>(chunk)),
|
| masm_(assembler),
|
| info_(info),
|
| current_block_(-1),
|
| @@ -153,7 +153,7 @@ class LCodeGen BASE_EMBEDDED {
|
| return info()->is_classic_mode() ? kNonStrictMode : kStrictMode;
|
| }
|
|
|
| - LChunk* chunk() const { return chunk_; }
|
| + LPlatformChunk* chunk() const { return chunk_; }
|
| Scope* scope() const { return scope_; }
|
| HGraph* graph() const { return chunk_->graph(); }
|
|
|
| @@ -354,7 +354,7 @@ class LCodeGen BASE_EMBEDDED {
|
| void EnsureSpaceForLazyDeopt();
|
|
|
| Zone* zone_;
|
| - LChunk* const chunk_;
|
| + LPlatformChunk* const chunk_;
|
| MacroAssembler* const masm_;
|
| CompilationInfo* const info_;
|
|
|
|
|