Skip to content

Commit cce3599

Browse files
[Object] Fix grammar mistake in the comment
Update comment in previous commit from D156603.
1 parent c2c22c6 commit cce3599

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/lib/Object/SymbolSize.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ llvm::object::computeSymbolSizes(const ObjectFile &O) {
8686

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

0 commit comments

Comments
 (0)