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:
NAKAMURA Takumi 2012-02-05 05:47:51 +00:00
parent 6d1263acb9
commit 5c05f2b99e

View File

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