From ebeb0cba94e41b60f2095d4e7f09989f16233da4 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Fri, 17 Sep 2004 03:58:39 +0000 Subject: [PATCH] Fix typo in comment git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16384 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Transforms/IPO/ArgumentPromotion.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Transforms/IPO/ArgumentPromotion.cpp b/lib/Transforms/IPO/ArgumentPromotion.cpp index a4086524e17..b6ae4e2a22a 100644 --- a/lib/Transforms/IPO/ArgumentPromotion.cpp +++ b/lib/Transforms/IPO/ArgumentPromotion.cpp @@ -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