Index: src/compiler/pipeline.cc |
diff --git a/src/compiler/pipeline.cc b/src/compiler/pipeline.cc |
index 3a3460f715ab7694306253486888f2011a84362b..f38065e411834e7e30fc592321ba3698d7478749 100644 |
--- a/src/compiler/pipeline.cc |
+++ b/src/compiler/pipeline.cc |
@@ -453,7 +453,8 @@ Handle<Code> Pipeline::GenerateCode(Linkage* linkage, Graph* graph, |
profiler_data = BasicBlockInstrumentor::Instrument(info_, graph, schedule); |
} |
- InstructionSequence sequence(linkage, graph, schedule); |
+ Zone* instruction_zone = schedule->zone(); |
+ InstructionSequence sequence(instruction_zone, linkage, graph, schedule); |
// Select and schedule instructions covering the scheduled graph. |
{ |