| Index: src/compiler/pipeline.h
|
| diff --git a/src/compiler/pipeline.h b/src/compiler/pipeline.h
|
| index c13a324eac3896316798387ea08a2b97210dbd66..14688d91e754ef5be8e7e5a99940c51261a797e7 100644
|
| --- a/src/compiler/pipeline.h
|
| +++ b/src/compiler/pipeline.h
|
| @@ -25,6 +25,7 @@ class Linkage;
|
| class RegisterAllocator;
|
| class Schedule;
|
| class SourcePositionTable;
|
| +class ZonePool;
|
|
|
| class Pipeline {
|
| public:
|
| @@ -51,7 +52,7 @@ class Pipeline {
|
| Isolate* isolate() { return info_->isolate(); }
|
| Zone* zone() { return info_->zone(); }
|
|
|
| - Schedule* ComputeSchedule(Graph* graph);
|
| + Schedule* ComputeSchedule(ZonePool* zone_pool, Graph* graph);
|
| void OpenTurboCfgFile(std::ofstream* stream);
|
| void PrintCompilationStart();
|
| void PrintScheduleAndInstructions(const char* phase, const Schedule* schedule,
|
|
|