1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 19:52:54 +01:00

BBVectorize.cpp: Get rid of comparision to bool to fix a warning.

llvm-svn: 149810
This commit is contained in:
NAKAMURA Takumi 2012-02-05 05:47:51 +00:00
parent fe4a950689
commit 7e1d4995af

View File

@ -967,7 +967,7 @@ namespace {
return true; return true;
} }
if (CurrentPairs.count(C->second) > 0 && if (CurrentPairs.count(C->second) != 0 &&
Visited.count(C->second) == 0) Visited.count(C->second) == 0)
Q.push_back(C->second); Q.push_back(C->second);
} }