File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -188,9 +188,10 @@ uint64_t TextOutputSection::estimateStubsInRangeVA(size_t callIdx) const {
188188 // Tally up any thunks that have already been placed that have VA higher than
189189 // inputs[callIdx]. First, find the index of the first thunk that is beyond
190190 // the current inputs[callIdx].
191- auto itPostcallIdxThunks = std::partition_point (
192- thunks.begin (), thunks.end (),
193- [isecVA](const ConcatInputSection *t) { return t->getVA () <= isecVA; });
191+ auto itPostcallIdxThunks =
192+ llvm::partition_point (thunks, [isecVA](const ConcatInputSection *t) {
193+ return t->getVA () <= isecVA;
194+ });
194195 uint64_t existingForwardThunks = thunks.end () - itPostcallIdxThunks;
195196
196197 // Estimate the address after which call sites can safely call stubs
You can’t perform that action at this time.
0 commit comments