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 c07e168 commit eb4827cCopy full SHA for eb4827c
lld/MachO/Driver.cpp
@@ -312,10 +312,10 @@ void multiThreadedPageInBackground(const DeferredFiles &deferred) {
312
index += 1;
313
mutex.unlock();
314
315
- volatile int t = 0; // Reference each page to load it into memory.
+ // Reference each page to load it into memory.
316
for (const char *page = buff.data(), *end = page + buff.size();
317
page < end; page += pageSize)
318
- t += *page;
+ volatile char t = *page;
319
}
320
});
321
0 commit comments