Fix spelling

llvm-svn: 5983
This commit is contained in:
Chris Lattner 2003-05-02 19:26:34 +00:00
parent f22d1f5912
commit 3666378690
1 changed files with 1 additions and 1 deletions

View 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)
//