Formatting

This commit is contained in:
David Ungar
2018-03-09 20:11:22 -08:00
parent c9db72c1cb
commit ba1a714dbe
10 changed files with 185 additions and 142 deletions

View File

@@ -206,15 +206,19 @@ private:
public:
Compilation(DiagnosticEngine &Diags, const ToolChain &TC,
OutputInfo const &OI, OutputLevel Level,
OutputInfo const &OI,
OutputLevel Level,
std::unique_ptr<llvm::opt::InputArgList> InputArgs,
std::unique_ptr<llvm::opt::DerivedArgList> TranslatedArgs,
InputFileList InputsWithTypes, StringRef ArgsHash,
llvm::sys::TimePoint<> StartTime,
InputFileList InputsWithTypes,
StringRef ArgsHash, llvm::sys::TimePoint<> StartTime,
unsigned NumberOfParallelCommands = 1,
bool EnableIncrementalBuild = false, bool EnableBatchMode = false,
unsigned BatchSeed = 0, bool ForceOneBatchRepartition = false,
bool SkipTaskExecution = false, bool SaveTemps = false,
bool EnableIncrementalBuild = false,
bool EnableBatchMode = false,
unsigned BatchSeed = 0,
bool ForceOneBatchRepartition = false,
bool SkipTaskExecution = false,
bool SaveTemps = false,
bool ShowDriverTimeCompilation = false,
std::unique_ptr<UnifiedStatsReporter> Stats = nullptr);
~Compilation();

View File

@@ -44,7 +44,6 @@ namespace opt {
namespace swift {
class DiagnosticEngine;
namespace driver {
class Action;
class CommandOutput;