From: Chris Lattner Date: Fri, 2 May 2003 19:26:34 +0000 (+0000) Subject: Fix spelling X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=e96fda3002dd0769d3dd758ac5008ba8cda92349;p=oota-llvm.git Fix spelling git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5983 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Transforms/Scalar/Reassociate.cpp b/lib/Transforms/Scalar/Reassociate.cpp index 3414c410ac8..82ae37a53c1 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) //