| Index: src/compiler/pipeline.cc
|
| diff --git a/src/compiler/pipeline.cc b/src/compiler/pipeline.cc
|
| index b105a317c20a2bc79f18a0a1869e2b77c62e184e..e29f0757de9d1a07718f6bda5d7ca0e45852e0d9 100644
|
| --- a/src/compiler/pipeline.cc
|
| +++ b/src/compiler/pipeline.cc
|
| @@ -1003,7 +1003,8 @@ Handle<Code> Pipeline::GenerateCodeForTesting(Isolate* isolate,
|
| CallDescriptor* call_descriptor,
|
| Graph* graph,
|
| Schedule* schedule) {
|
| - CompilationInfo info(isolate, graph->zone());
|
| + FakeStubForTesting stub(isolate);
|
| + CompilationInfo info(&stub, isolate, graph->zone());
|
| return GenerateCodeForTesting(&info, call_descriptor, graph, schedule);
|
| }
|
|
|
| @@ -1044,7 +1045,8 @@ Handle<Code> Pipeline::GenerateCodeForTesting(CompilationInfo* info,
|
| bool Pipeline::AllocateRegistersForTesting(const RegisterConfiguration* config,
|
| InstructionSequence* sequence,
|
| bool run_verifier) {
|
| - CompilationInfo info(sequence->isolate(), sequence->zone());
|
| + FakeStubForTesting stub(sequence->isolate());
|
| + CompilationInfo info(&stub, sequence->isolate(), sequence->zone());
|
| ZonePool zone_pool;
|
| PipelineData data(&zone_pool, &info);
|
| data.InitializeTorTesting(sequence);
|
|
|