We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c2c22c6 commit cce3599Copy full SHA for cce3599
llvm/lib/Object/SymbolSize.cpp
@@ -86,7 +86,7 @@ llvm::object::computeSymbolSizes(const ObjectFile &O) {
86
87
// Compute the size as the gap to the next symbol. If multiple symbols have
88
// 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
+ // use two pointers to keep track of the current symbol vs. the next symbol
90
// that doesn't have the same address for size computation.
91
for (unsigned I = 0, NextI = 0, N = Addresses.size() - 1; I < N; ++I) {
92
auto &P = Addresses[I];
0 commit comments