Replaced !fileIsSIB test with true where it is applied to source files.

This commit is contained in:
David Ungar
2018-01-17 12:33:07 -08:00
parent 3c882f2841
commit b55ec29c7a

View File

@@ -827,7 +827,7 @@ static bool performCompile(CompilerInstance &Instance,
for (auto *PrimaryFile : Instance.getPrimarySourceFiles()) {
auto SM = performSILGeneration(*PrimaryFile, SILOpts, None);
PSGIs.push_back(PostSILGenInputs{
std::move(SM), !fileIsSIB(PrimaryFile), PrimaryFile});
std::move(SM), true, PrimaryFile});
}
}
} else {