| Index: src/ia32/lithium-ia32.h
|
| diff --git a/src/ia32/lithium-ia32.h b/src/ia32/lithium-ia32.h
|
| index 09cb17bd6237bc36edaaa99c3480007bf4cdf4dd..e05a936291760a49fffaaaf5402c0bd68f2ab67b 100644
|
| --- a/src/ia32/lithium-ia32.h
|
| +++ b/src/ia32/lithium-ia32.h
|
| @@ -2319,10 +2319,10 @@ class LLoadFieldByIndex: public LTemplateInstruction<1, 2, 0> {
|
|
|
|
|
| class LChunkBuilder;
|
| -class LChunk: public LChunkBase {
|
| +class LPlatformChunk: public LChunk {
|
| public:
|
| - LChunk(CompilationInfo* info, HGraph* graph)
|
| - : LChunkBase(info, graph),
|
| + LPlatformChunk(CompilationInfo* info, HGraph* graph)
|
| + : LChunk(info, graph),
|
| num_double_slots_(0) { }
|
|
|
| int GetNextSpillIndex(bool is_double);
|
| @@ -2353,7 +2353,7 @@ class LChunkBuilder BASE_EMBEDDED {
|
| pending_deoptimization_ast_id_(AstNode::kNoNumber) { }
|
|
|
| // Build the sequence for the graph.
|
| - LChunk* Build();
|
| + LPlatformChunk* Build();
|
|
|
| // Declare methods that deal with the individual node types.
|
| #define DECLARE_DO(type) LInstruction* Do##type(H##type* node);
|
| @@ -2371,7 +2371,7 @@ class LChunkBuilder BASE_EMBEDDED {
|
| ABORTED
|
| };
|
|
|
| - LChunk* chunk() const { return chunk_; }
|
| + LPlatformChunk* chunk() const { return chunk_; }
|
| CompilationInfo* info() const { return info_; }
|
| HGraph* graph() const { return graph_; }
|
| Zone* zone() const { return zone_; }
|
| @@ -2475,7 +2475,7 @@ class LChunkBuilder BASE_EMBEDDED {
|
| LInstruction* DoArithmeticT(Token::Value op,
|
| HArithmeticBinaryOperation* instr);
|
|
|
| - LChunk* chunk_;
|
| + LPlatformChunk* chunk_;
|
| CompilationInfo* info_;
|
| HGraph* const graph_;
|
| Zone* zone_;
|
|
|