| Index: src/ia32/lithium-codegen-ia32.h
|
| diff --git a/src/ia32/lithium-codegen-ia32.h b/src/ia32/lithium-codegen-ia32.h
|
| index ff906350b6dd4e83f74b9aa2bce79fcbf43ccdd2..87b975c8ad5e2c488af2be39ed9346e664a48fa3 100644
|
| --- a/src/ia32/lithium-codegen-ia32.h
|
| +++ b/src/ia32/lithium-codegen-ia32.h
|
| @@ -46,9 +46,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),
|
| @@ -150,7 +150,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(); }
|
|
|
| @@ -330,7 +330,7 @@ class LCodeGen BASE_EMBEDDED {
|
| void EmitPushTaggedOperand(LOperand* operand);
|
|
|
| Zone* zone_;
|
| - LChunk* const chunk_;
|
| + LPlatformChunk* const chunk_;
|
| MacroAssembler* const masm_;
|
| CompilationInfo* const info_;
|
|
|
|
|