| Index: src/objects.cc
|
| diff --git a/src/objects.cc b/src/objects.cc
|
| index fc42fc7ecc43c263aef2dd187b5ef21dae588f73..b89e92e4ff42b57eba9a5a56c4e97f8c71daa780 100644
|
| --- a/src/objects.cc
|
| +++ b/src/objects.cc
|
| @@ -11229,7 +11229,7 @@ void DependentCode::RemoveCompilationInfo(DependentCode::DependencyGroup group,
|
|
|
| bool DependentCode::Contains(DependencyGroup group, Code* code) {
|
| GroupStartIndexes starts(this);
|
| - int number_of_entries = starts.number_of_code_entries();
|
| + int number_of_entries = starts.number_of_entries();
|
| for (int i = 0; i < number_of_entries; i++) {
|
| if (object_at(i) == code) return true;
|
| }
|
| @@ -11252,7 +11252,7 @@ void DependentCode::DeoptimizeDependentCodeGroup(
|
| DependentCode::GroupStartIndexes starts(this);
|
| int start = starts.at(group);
|
| int end = starts.at(group + 1);
|
| - int code_entries = starts.number_of_code_entries();
|
| + int code_entries = starts.number_of_entries();
|
| if (start == end) return;
|
| for (int i = start; i < end; i++) {
|
| if (is_code_at(i)) {
|
|
|