[NFC] Converting to range-based for.
authorChris Bieneman <beanz@apple.com>
Wed, 29 Apr 2015 21:45:22 +0000 (21:45 +0000)
committerChris Bieneman <beanz@apple.com>
Wed, 29 Apr 2015 21:45:22 +0000 (21:45 +0000)
llvm-svn: 236163

llvm/lib/IR/LegacyPassManager.cpp

index 6870032..bbec642 100644 (file)
@@ -88,8 +88,7 @@ PrintAfterAll("print-after-all",
 
 static bool ShouldPrintBeforeOrAfterPass(const PassInfo *PI,
                                          PassOptionList &PassesToPrint) {
-  for (unsigned i = 0, ie = PassesToPrint.size(); i < ie; ++i) {
-    const llvm::PassInfo *PassInf = PassesToPrint[i];
+  for (auto *PassInf : PassesToPrint) {
     if (PassInf)
       if (PassInf->getPassArgument() == PI->getPassArgument()) {
         return true;