aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChad Rosier <mcrosier@apple.com>2012-04-11 19:21:58 +0000
committerChad Rosier <mcrosier@apple.com>2012-04-11 19:21:58 +0000
commitc9f27ee842b633662f381b6e2cbd6de96b5bf905 (patch)
tree3ec8d0dbddfb5e33c612a050906b48e8777f0a83
parentec14cd7ddc66d47cd7927f18d8c11844c400367e (diff)
downloadexternal_llvm-c9f27ee842b633662f381b6e2cbd6de96b5bf905.zip
external_llvm-c9f27ee842b633662f381b6e2cbd6de96b5bf905.tar.gz
external_llvm-c9f27ee842b633662f381b6e2cbd6de96b5bf905.tar.bz2
Typo.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@154522 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Transforms/Scalar/ScalarReplAggregates.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Transforms/Scalar/ScalarReplAggregates.cpp b/lib/Transforms/Scalar/ScalarReplAggregates.cpp
index 83627df..026fea1 100644
--- a/lib/Transforms/Scalar/ScalarReplAggregates.cpp
+++ b/lib/Transforms/Scalar/ScalarReplAggregates.cpp
@@ -13,7 +13,7 @@
// each member (if possible). Then, if possible, it transforms the individual
// alloca instructions into nice clean scalar SSA form.
//
-// This combines a simple SRoA algorithm with the Mem2Reg algorithm because
+// This combines a simple SRoA algorithm with the Mem2Reg algorithm because they
// often interact, especially for C++ programs. As such, iterating between
// SRoA, then Mem2Reg until we run out of things to promote works well.
//