File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -202,7 +202,7 @@ int Compilation::ExecuteCommand(const Command &C,
202202 // us knowing about it.
203203 llvm::TimeRecord StartTime;
204204 if (getArgs ().hasArg (options::OPT_time)) {
205- StartTime = llvm::TimeRecord::getCurrentTime (true );
205+ StartTime = llvm::TimeRecord::getCurrentTime (/* Start= */ true );
206206 }
207207
208208 std::string Error;
@@ -212,7 +212,7 @@ int Compilation::ExecuteCommand(const Command &C,
212212 PostCallback (C, Res);
213213
214214 if (getArgs ().hasArg (options::OPT_time)) {
215- llvm::TimeRecord Time = llvm::TimeRecord::getCurrentTime (false );
215+ llvm::TimeRecord Time = llvm::TimeRecord::getCurrentTime (/* Start= */ false );
216216 Time -= StartTime;
217217 llvm::StringRef Name = llvm::sys::path::filename (C.getExecutable ());
218218 llvm::errs () << " # " << Name << " "
You can’t perform that action at this time.
0 commit comments