Index: src/compiler/pipeline.cc |
diff --git a/src/compiler/pipeline.cc b/src/compiler/pipeline.cc |
index 33c5463c6f07a2cad00815780a377789c9146b04..cda5c779654f2e68a9c6b2ec4b6867465915cb5d 100644 |
--- a/src/compiler/pipeline.cc |
+++ b/src/compiler/pipeline.cc |
@@ -737,11 +737,11 @@ struct CommitAssignmentPhase { |
}; |
-struct PopulatePointerMapsPhase { |
+struct PopulateReferenceMapsPhase { |
static const char* phase_name() { return "populate pointer maps"; } |
void Run(PipelineData* data, Zone* temp_zone) { |
- data->register_allocator()->PopulatePointerMaps(); |
+ data->register_allocator()->PopulateReferenceMaps(); |
} |
}; |
@@ -1217,7 +1217,7 @@ void Pipeline::AllocateRegisters(const RegisterConfiguration* config, |
Run<AssignSpillSlotsPhase>(); |
Run<CommitAssignmentPhase>(); |
- Run<PopulatePointerMapsPhase>(); |
+ Run<PopulateReferenceMapsPhase>(); |
Run<ConnectRangesPhase>(); |
Run<ResolveControlFlowPhase>(); |
if (FLAG_turbo_move_optimization) { |