Skip to content

Commit e180489

Browse files
committed
clang-format
1 parent 220c4b8 commit e180489

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

clang/lib/Driver/Action.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@ const char *Action::getClassName(ActionClass AC) {
2727
case PrecompileJobClass: return "precompiler";
2828
case ExtractAPIJobClass:
2929
return "api-extractor";
30-
case AnalyzeJobClass: return "analyzer";
30+
case AnalyzeJobClass:
31+
return "analyzer";
3132
case CompileJobClass: return "compiler";
3233
case BackendJobClass: return "backend";
3334
case AssembleJobClass: return "assembler";

clang/lib/Driver/Driver.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -366,7 +366,8 @@ phases::ID Driver::getFinalPhase(const DerivedArgList &DAL,
366366
// -{fsyntax-only,-analyze,emit-ast} only run up to the compiler.
367367
} else if ((PhaseArg = DAL.getLastArg(options::OPT_fsyntax_only)) ||
368368
(PhaseArg = DAL.getLastArg(options::OPT_print_supported_cpus)) ||
369-
(PhaseArg = DAL.getLastArg(options::OPT_print_enabled_extensions)) ||
369+
(PhaseArg =
370+
DAL.getLastArg(options::OPT_print_enabled_extensions)) ||
370371
(PhaseArg = DAL.getLastArg(options::OPT_module_file_info)) ||
371372
(PhaseArg = DAL.getLastArg(options::OPT_verify_pch)) ||
372373
(PhaseArg = DAL.getLastArg(options::OPT_rewrite_objc)) ||

0 commit comments

Comments
 (0)