diff --git a/clang/lib/Frontend/CompilerInvocation.cpp b/clang/lib/Frontend/CompilerInvocation.cpp index 61cf2e4d6c919..955e64427f9d4 100644 --- a/clang/lib/Frontend/CompilerInvocation.cpp +++ b/clang/lib/Frontend/CompilerInvocation.cpp @@ -4976,13 +4976,13 @@ bool CompilerInvocation::CreateFromArgsImpl( Res.getCASOpts()); // BEGIN MCCAS - if (!Res.getFrontendOpts().CompilationCachingServicePath.empty()) + if (!Res.getFrontendOpts().CompilationCachingServicePath.empty()) { if (Res.getCodeGenOpts().UseCASBackend) Diags.Report(diag::err_fe_incompatible_option_with_remote_cache) << "-fcas-backend"; - if (Res.getFrontendOpts().WriteOutputAsCASID) { - Diags.Report(diag::err_fe_incompatible_option_with_remote_cache) - << "-fcasid-output"; + if (Res.getFrontendOpts().WriteOutputAsCASID) + Diags.Report(diag::err_fe_incompatible_option_with_remote_cache) + << "-fcasid-output"; } // END MCCAS