Fix typo in comment
authorChris Lattner <sabre@nondot.org>
Fri, 17 Sep 2004 03:58:39 +0000 (03:58 +0000)
committerChris Lattner <sabre@nondot.org>
Fri, 17 Sep 2004 03:58:39 +0000 (03:58 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16384 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/IPO/ArgumentPromotion.cpp

index a4086524e1742e2c63e0ea4ed44f6d07224ef11d..b6ae4e2a22ab6227341d6447206044ebffe4bf14 100644 (file)
@@ -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