From: Chris Lattner Date: Sun, 19 Sep 2004 01:05:16 +0000 (+0000) Subject: Add comment X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=f5afcabff887c2e9023f0c69c44f1de15b5c4347;p=oota-llvm.git Add comment git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16400 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Transforms/IPO/ArgumentPromotion.cpp b/lib/Transforms/IPO/ArgumentPromotion.cpp index 6e78ff8b92c..7b5def4284d 100644 --- a/lib/Transforms/IPO/ArgumentPromotion.cpp +++ b/lib/Transforms/IPO/ArgumentPromotion.cpp @@ -82,7 +82,7 @@ Pass *llvm::createArgumentPromotionPass() { bool ArgPromotion::runOnSCC(const std::vector &SCC) { bool Changed = false, LocalChange; - do { + do { // Iterate until we stop promoting from this SCC. LocalChange = false; // Attempt to promote arguments from all functions in this SCC. for (unsigned i = 0, e = SCC.size(); i != e; ++i)