| Index: src/compiler/instruction-selector.cc
|
| diff --git a/src/compiler/instruction-selector.cc b/src/compiler/instruction-selector.cc
|
| index c996f490a10b4ab6134b0a67c1d01b95445007c9..433ae920237a80421956b3ce378a01d6c853cb4c 100644
|
| --- a/src/compiler/instruction-selector.cc
|
| +++ b/src/compiler/instruction-selector.cc
|
| @@ -13,12 +13,12 @@ namespace v8 {
|
| namespace internal {
|
| namespace compiler {
|
|
|
| -InstructionSelector::InstructionSelector(Linkage* linkage,
|
| +InstructionSelector::InstructionSelector(Zone* local_zone, Linkage* linkage,
|
| InstructionSequence* sequence,
|
| Schedule* schedule,
|
| SourcePositionTable* source_positions,
|
| Features features)
|
| - : zone_(sequence->isolate()),
|
| + : zone_(local_zone),
|
| linkage_(linkage),
|
| sequence_(sequence),
|
| source_positions_(source_positions),
|
|
|