mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-05-15 00:38:42 +00:00
Trailing whitespace.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@86347 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
4e2211112e
commit
c11e84d3e7
@ -66,7 +66,7 @@ static TimerGroup *getDefaultTimerGroup() {
|
|||||||
}
|
}
|
||||||
llvm_release_global_lock();
|
llvm_release_global_lock();
|
||||||
}
|
}
|
||||||
|
|
||||||
return tmp;
|
return tmp;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -182,13 +182,13 @@ void Timer::sum(const Timer &T) {
|
|||||||
Lock.acquire();
|
Lock.acquire();
|
||||||
T.Lock.acquire();
|
T.Lock.acquire();
|
||||||
}
|
}
|
||||||
|
|
||||||
Elapsed += T.Elapsed;
|
Elapsed += T.Elapsed;
|
||||||
UserTime += T.UserTime;
|
UserTime += T.UserTime;
|
||||||
SystemTime += T.SystemTime;
|
SystemTime += T.SystemTime;
|
||||||
MemUsed += T.MemUsed;
|
MemUsed += T.MemUsed;
|
||||||
PeakMem += T.PeakMem;
|
PeakMem += T.PeakMem;
|
||||||
|
|
||||||
if (&T < this) {
|
if (&T < this) {
|
||||||
T.Lock.release();
|
T.Lock.release();
|
||||||
Lock.release();
|
Lock.release();
|
||||||
@ -287,7 +287,7 @@ void Timer::print(const Timer &Total, raw_ostream &OS) {
|
|||||||
Lock.acquire();
|
Lock.acquire();
|
||||||
Total.Lock.acquire();
|
Total.Lock.acquire();
|
||||||
}
|
}
|
||||||
|
|
||||||
if (Total.UserTime)
|
if (Total.UserTime)
|
||||||
printVal(UserTime, Total.UserTime, OS);
|
printVal(UserTime, Total.UserTime, OS);
|
||||||
if (Total.SystemTime)
|
if (Total.SystemTime)
|
||||||
@ -310,7 +310,7 @@ void Timer::print(const Timer &Total, raw_ostream &OS) {
|
|||||||
OS << Name << "\n";
|
OS << Name << "\n";
|
||||||
|
|
||||||
Started = false; // Once printed, don't print again
|
Started = false; // Once printed, don't print again
|
||||||
|
|
||||||
if (&Total < this) {
|
if (&Total < this) {
|
||||||
Total.Lock.release();
|
Total.Lock.release();
|
||||||
Lock.release();
|
Lock.release();
|
||||||
@ -329,13 +329,13 @@ llvm::GetLibSupportInfoOutputFile() {
|
|||||||
if (LibSupportInfoOutputFilename == "-")
|
if (LibSupportInfoOutputFilename == "-")
|
||||||
return &outs();
|
return &outs();
|
||||||
|
|
||||||
|
|
||||||
std::string Error;
|
std::string Error;
|
||||||
raw_ostream *Result = new raw_fd_ostream(LibSupportInfoOutputFilename.c_str(),
|
raw_ostream *Result = new raw_fd_ostream(LibSupportInfoOutputFilename.c_str(),
|
||||||
Error, raw_fd_ostream::F_Append);
|
Error, raw_fd_ostream::F_Append);
|
||||||
if (Error.empty())
|
if (Error.empty())
|
||||||
return Result;
|
return Result;
|
||||||
|
|
||||||
errs() << "Error opening info-output-file '"
|
errs() << "Error opening info-output-file '"
|
||||||
<< LibSupportInfoOutputFilename << " for appending!\n";
|
<< LibSupportInfoOutputFilename << " for appending!\n";
|
||||||
delete Result;
|
delete Result;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user