Skip to content

Commit b55ec29

Browse files
author
David Ungar
committed
Replaced !fileIsSIB test with true where it is applied to source files.
1 parent 3c882f2 commit b55ec29

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/FrontendTool/FrontendTool.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -827,7 +827,7 @@ static bool performCompile(CompilerInstance &Instance,
827827
for (auto *PrimaryFile : Instance.getPrimarySourceFiles()) {
828828
auto SM = performSILGeneration(*PrimaryFile, SILOpts, None);
829829
PSGIs.push_back(PostSILGenInputs{
830-
std::move(SM), !fileIsSIB(PrimaryFile), PrimaryFile});
830+
std::move(SM), true, PrimaryFile});
831831
}
832832
}
833833
} else {

0 commit comments

Comments
 (0)