1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 02:52:53 +02:00

Use .empty() instead of .size().

llvm-svn: 110981
This commit is contained in:
Dan Gohman 2010-08-12 23:46:28 +00:00
parent 2dc2440b42
commit f6ffbfbbd1

View File

@ -737,7 +737,7 @@ void PMDataManager::recordAvailableAnalysis(Pass *P) {
AvailableAnalysis[PI] = P;
assert(AvailableAnalysis.size());
assert(!AvailableAnalysis.empty());
//This pass is the current implementation of all of the interfaces it
//implements as well.