| Index: src/compiler/instruction.cc
|
| diff --git a/src/compiler/instruction.cc b/src/compiler/instruction.cc
|
| index 6b0540a0d3426b9ebd5341a7c2852894a7a70bb1..7d1851a94d579af844f1c0273e064c4bd724ab7f 100644
|
| --- a/src/compiler/instruction.cc
|
| +++ b/src/compiler/instruction.cc
|
| @@ -430,9 +430,11 @@ void InstructionSequence::ComputeAssemblyOrder(InstructionBlocks* blocks) {
|
| }
|
|
|
|
|
| -InstructionSequence::InstructionSequence(Zone* instruction_zone,
|
| +InstructionSequence::InstructionSequence(Isolate* isolate,
|
| + Zone* instruction_zone,
|
| InstructionBlocks* instruction_blocks)
|
| - : zone_(instruction_zone),
|
| + : isolate_(isolate),
|
| + zone_(instruction_zone),
|
| instruction_blocks_(instruction_blocks),
|
| block_starts_(zone()),
|
| constants_(ConstantMap::key_compare(),
|
|
|