forked from OSchip/llvm-project
[NewGVN] Try to be consistent wit the style used in this file. NFCI.
llvm-svn: 292025
This commit is contained in:
parent
76de68eaf9
commit
7cf29dcca5
|
@ -1455,7 +1455,7 @@ void NewGVN::updateProcessedCount(Value *V) {
|
|||
if (ProcessedCount.count(V) == 0) {
|
||||
ProcessedCount.insert({V, 1});
|
||||
} else {
|
||||
ProcessedCount[V] += 1;
|
||||
++ProcessedCount[V];
|
||||
assert(ProcessedCount[V] < 100 &&
|
||||
"Seem to have processed the same Value a lot");
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue