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 ee17f61 commit e4fb791Copy full SHA for e4fb791
lib/Driver/Compilation.cpp
@@ -1014,12 +1014,13 @@ namespace driver {
1014
for (const Job *Cmd : Comp.getJobs()) {
1015
auto pri = Cmd->getFirstSwiftPrimaryInput();
1016
if (pri.empty())
1017
- if (allSourceRangeInfo.count(pri)) {
1018
- noteBuilding(
1019
- Cmd, false, true,
1020
- "already have source-range and compiled-source files.");
1021
- continue;
1022
- }
+ continue;
+ if (allSourceRangeInfo.count(pri)) {
+ noteBuilding(
+ Cmd, false, true,
+ "already have source-range and compiled-source files.");
1023
+ }
1024
noteBuilding(Cmd, true, true,
1025
"to create source-range and compiled-source files for the "
1026
"next time when falling back from source-ranges");
0 commit comments