1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-18 18:42:46 +02:00

[TableGen] Fix missing braces in if statement

This commit is contained in:
Paul C. Anagnostopoulos 2020-11-14 12:37:48 -05:00
parent 75727d2f3e
commit 151d493181

View File

@ -2608,9 +2608,10 @@ void RecordKeeper::startBackendTimer(StringRef Name) {
void RecordKeeper::stopBackendTimer() {
if (TimingGroup) {
if (BackendTimer)
if (BackendTimer) {
stopTimer();
BackendTimer = false;
}
}
}