Remove debugging code

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17719 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2004-11-13 23:32:53 +00:00
parent 11a3d7b7dd
commit 4c989b6bd7

View 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);