Skip to content

Commit 0ff521f

Browse files
akyrtzibenlangmuir
authored andcommitted
[CompileJobCacheResult] Return the correct strings for CompileJobCacheResult::getOutputKindName
(cherry picked from commit 995d22a)
1 parent 01b9325 commit 0ff521f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

clang/lib/Frontend/CompileJobCacheResult.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,9 +86,9 @@ StringRef CompileJobCacheResult::getOutputKindName(OutputKind Kind) {
8686
case OutputKind::MainOutput:
8787
return "main";
8888
case OutputKind::SerializedDiagnostics:
89-
return "deps";
90-
case OutputKind::Dependencies:
9189
return "diags";
90+
case OutputKind::Dependencies:
91+
return "deps";
9292
}
9393
}
9494

0 commit comments

Comments
 (0)