Fix spelling
authorChris Lattner <sabre@nondot.org>
Fri, 2 May 2003 19:26:34 +0000 (19:26 +0000)
committerChris Lattner <sabre@nondot.org>
Fri, 2 May 2003 19:26:34 +0000 (19:26 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5983 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/Scalar/Reassociate.cpp

index 3414c410ac8d1e5aa0b8676558456f859282218a..82ae37a53c1d0401447385eb95e45c91f7522949 100644 (file)
@@ -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)
 //