aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Transforms
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2004-09-17 03:58:39 +0000
committerChris Lattner <sabre@nondot.org>2004-09-17 03:58:39 +0000
commitebeb0cba94e41b60f2095d4e7f09989f16233da4 (patch)
treef8308220d88a8f63f75d92492379ff9c1e101ae5 /lib/Transforms
parent298d6c14ca1936677aaf6cca3efc569b6e53d294 (diff)
downloadexternal_llvm-ebeb0cba94e41b60f2095d4e7f09989f16233da4.zip
external_llvm-ebeb0cba94e41b60f2095d4e7f09989f16233da4.tar.gz
external_llvm-ebeb0cba94e41b60f2095d4e7f09989f16233da4.tar.bz2
Fix typo in comment
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16384 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms')
-rw-r--r--lib/Transforms/IPO/ArgumentPromotion.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Transforms/IPO/ArgumentPromotion.cpp b/lib/Transforms/IPO/ArgumentPromotion.cpp
index a408652..b6ae4e2 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