mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-28 15:33:14 +00:00
BBVectorize.cpp: Get rid of comparision to bool to fix a warning.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@149810 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
6d1263acb9
commit
5c05f2b99e
@ -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
Block a user