Remove debugging code
authorChris Lattner <sabre@nondot.org>
Sat, 13 Nov 2004 23:32:53 +0000 (23:32 +0000)
committerChris Lattner <sabre@nondot.org>
Sat, 13 Nov 2004 23:32:53 +0000 (23:32 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17719 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/IPO/ArgumentPromotion.cpp

index 927c60a23fb5ba301910c92916dd20f491092821..3e3e265c6ed0385bd9517e6ae48cb4c59bd6741d 100644 (file)
@@ -87,7 +87,6 @@ bool ArgPromotion::runOnSCC(const std::vector<CallGraphNode *> &SCC) {
     // Attempt to promote arguments from all functions in this SCC.
     for (unsigned i = 0, e = SCC.size(); i != e; ++i)
       LocalChange |= PromoteArguments(SCC[i]);
-    if (LocalChange) return true;
     Changed |= LocalChange;               // Remember that we changed something.
   } while (LocalChange);