[llvm-commits] CVS: llvm/lib/Transforms/IPO/ArgumentPromotion.cpp

Chris Lattner lattner at cs.uiuc.edu
Sat Nov 13 15:33:06 PST 2004



Changes in directory llvm/lib/Transforms/IPO:

ArgumentPromotion.cpp updated: 1.14 -> 1.15
---
Log message:

Remove debugging code


---
Diffs of the changes:  (+0 -1)

Index: llvm/lib/Transforms/IPO/ArgumentPromotion.cpp
diff -u llvm/lib/Transforms/IPO/ArgumentPromotion.cpp:1.14 llvm/lib/Transforms/IPO/ArgumentPromotion.cpp:1.15
--- llvm/lib/Transforms/IPO/ArgumentPromotion.cpp:1.14	Sat Nov 13 17:31:34 2004
+++ llvm/lib/Transforms/IPO/ArgumentPromotion.cpp	Sat Nov 13 17:32:53 2004
@@ -87,7 +87,6 @@
     // 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);
   






More information about the llvm-commits mailing list