forked from OSchip/llvm-project
BBVectorize.cpp: Get rid of comparision to bool to fix a warning.
llvm-svn: 149810
This commit is contained in:
parent
4ed7278ff4
commit
32c48634db
|
@ -967,7 +967,7 @@ namespace {
|
|||
return true;
|
||||
}
|
||||
|
||||
if (CurrentPairs.count(C->second) > 0 &&
|
||||
if (CurrentPairs.count(C->second) != 0 &&
|
||||
Visited.count(C->second) == 0)
|
||||
Q.push_back(C->second);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue