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 f7c8008 commit a6dd0bcCopy full SHA for a6dd0bc
lld/MachO/Driver.cpp
@@ -360,11 +360,12 @@ void multiThreadedPageInBackground(DeferredFiles &deferred) {
360
if (localIndex >= (int)deferred.size())
361
break;
362
const StringRef &buff = deferred[localIndex].buffer.getBuffer();
363
- totalBytes += buff.size();
364
if (buff.size() > largeArchive)
365
continue;
366
-
+#ifndef NDEBUG
+ totalBytes += buff.size();
367
included += 1;
368
+#endif
369
370
// Reference all file's mmap'd pages to load them into memory.
371
for (const char *page = buff.data(), *end = page + buff.size();
0 commit comments