Skip to content

Commit

Permalink
[Object] Fix grammar mistake in the comment
Browse files Browse the repository at this point in the history
Update comment in previous commit from D156603.
  • Loading branch information
cachemeifyoucan committed Jul 31, 2023
1 parent c2c22c6 commit cce3599
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion llvm/lib/Object/SymbolSize.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ llvm::object::computeSymbolSizes(const ObjectFile &O) {

// Compute the size as the gap to the next symbol. If multiple symbols have
// the same address, give both the same size. Because Addresses is sorted,
// using two pointers to keep track of the current symbol vs. the next symbol
// use two pointers to keep track of the current symbol vs. the next symbol
// that doesn't have the same address for size computation.
for (unsigned I = 0, NextI = 0, N = Addresses.size() - 1; I < N; ++I) {
auto &P = Addresses[I];
Expand Down

0 comments on commit cce3599

Please sign in to comment.