aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Transforms/Scalar/Reassociate.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-05-02 19:26:34 +0000
committerChris Lattner <sabre@nondot.org>2003-05-02 19:26:34 +0000
commite96fda3002dd0769d3dd758ac5008ba8cda92349 (patch)
treece8a17c3828b17260cc75bfeaa463713044e4cb6 /lib/Transforms/Scalar/Reassociate.cpp
parentb589bf7d77a57e961a871ae5ffee2381722d8c0f (diff)
downloadexternal_llvm-e96fda3002dd0769d3dd758ac5008ba8cda92349.tar.gz
external_llvm-e96fda3002dd0769d3dd758ac5008ba8cda92349.tar.bz2
external_llvm-e96fda3002dd0769d3dd758ac5008ba8cda92349.zip
Fix spelling
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5983 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Scalar/Reassociate.cpp')
-rw-r--r--lib/Transforms/Scalar/Reassociate.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Transforms/Scalar/Reassociate.cpp b/lib/Transforms/Scalar/Reassociate.cpp
index 3414c410ac..82ae37a53c 100644
--- a/lib/Transforms/Scalar/Reassociate.cpp
+++ b/lib/Transforms/Scalar/Reassociate.cpp
@@ -1,7 +1,7 @@
//===- Reassociate.cpp - Reassociate binary expressions -------------------===//
//
// This pass reassociates commutative expressions in an order that is designed
-// to promote better constant propogation, GCSE, LICM, PRE...
+// to promote better constant propagation, GCSE, LICM, PRE...
//
// For example: 4 + (x + 5) -> x + (4 + 5)
//