[NewGVN] Try to be consistent wit the style used in this file. NFCI.

llvm-svn: 292025
This commit is contained in:
Davide Italiano 2017-01-14 20:13:18 +00:00
parent 76de68eaf9
commit 7cf29dcca5
1 changed files with 1 additions and 1 deletions

View File

@ -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");
}