diff options
author | Chris Lattner <sabre@nondot.org> | 2003-05-02 19:26:34 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-05-02 19:26:34 +0000 |
commit | 36663786904287f1cdd783e335008ff63205351b (patch) | |
tree | 22bbf7685647860a7f81078fb128e86798572c9a /llvm/lib | |
parent | f22d1f5912e5372826a1910d36881ac422c65591 (diff) | |
download | bcm5719-llvm-36663786904287f1cdd783e335008ff63205351b.tar.gz bcm5719-llvm-36663786904287f1cdd783e335008ff63205351b.zip |
Fix spelling
llvm-svn: 5983
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/Transforms/Scalar/Reassociate.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Scalar/Reassociate.cpp b/llvm/lib/Transforms/Scalar/Reassociate.cpp index 3414c410ac8..82ae37a53c1 100644 --- a/llvm/lib/Transforms/Scalar/Reassociate.cpp +++ b/llvm/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) // |