mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 11:42:57 +01:00
BBVectorize.cpp: Get rid of comparision to bool to fix a warning.
llvm-svn: 149810
This commit is contained in:
parent
fe4a950689
commit
7e1d4995af
@ -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