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

Chris Lattner lattner at cs.uiuc.edu
Thu Sep 16 20:58:52 PDT 2004



Changes in directory llvm/lib/Transforms/IPO:

ArgumentPromotion.cpp updated: 1.9 -> 1.10
---
Log message:

Fix typo in comment


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

Index: llvm/lib/Transforms/IPO/ArgumentPromotion.cpp
diff -u llvm/lib/Transforms/IPO/ArgumentPromotion.cpp:1.9 llvm/lib/Transforms/IPO/ArgumentPromotion.cpp:1.10
--- llvm/lib/Transforms/IPO/ArgumentPromotion.cpp:1.9	Wed Sep  1 17:55:36 2004
+++ llvm/lib/Transforms/IPO/ArgumentPromotion.cpp	Thu Sep 16 22:58:39 2004
@@ -9,7 +9,7 @@
 //
 // This pass promotes "by reference" arguments to be "by value" arguments.  In
 // practice, this means looking for internal functions that have pointer
-// arguments.  If we can prove, through the use of alias analysis, that that an
+// arguments.  If we can prove, through the use of alias analysis, that an
 // argument is *only* loaded, then we can pass the value into the function
 // instead of the address of the value.  This can cause recursive simplification
 // of code and lead to the elimination of allocas (especially in C++ template






More information about the llvm-commits mailing list