1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 11:42:57 +01:00

Remove debugging code

llvm-svn: 17719
This commit is contained in:
Chris Lattner 2004-11-13 23:32:53 +00:00
parent 9749bf21f8
commit 9b2f0f93e3

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