[ThinLTO/lld] Document constant bool ModuleSummaryIndex parameter (NFC)

Makes this consistent with other ModuleSummaryIndex constructor calls.

llvm-svn: 334141
This commit is contained in:
Teresa Johnson 2018-06-06 22:22:13 +00:00
parent 4ffc3e7834
commit 566b402a13
1 changed files with 1 additions and 1 deletions

View File

@ -208,7 +208,7 @@ static void createEmptyIndex(StringRef ModulePath) {
if (!OS)
return;
ModuleSummaryIndex M(false);
ModuleSummaryIndex M(/*HaveGVs*/ false);
M.setSkipModuleByDistributedBackend();
WriteIndexToFile(M, *OS);