diff options
author | Misha Brukman <brukman+llvm@gmail.com> | 2003-10-10 17:57:28 +0000 |
---|---|---|
committer | Misha Brukman <brukman+llvm@gmail.com> | 2003-10-10 17:57:28 +0000 |
commit | 8b2bd4ed47e819e042a49d21abbd8f6bcd143f79 (patch) | |
tree | ba3a478e91b08ac7ff56e4f216b2af0fb7bac92a /llvm/lib/Transforms/Scalar/LICM.cpp | |
parent | d67697411af42b41073552b7ff73775ec6f9e6f2 (diff) | |
download | bcm5719-llvm-8b2bd4ed47e819e042a49d21abbd8f6bcd143f79.tar.gz bcm5719-llvm-8b2bd4ed47e819e042a49d21abbd8f6bcd143f79.zip |
Fix spelling.
llvm-svn: 9027
Diffstat (limited to 'llvm/lib/Transforms/Scalar/LICM.cpp')
-rw-r--r-- | llvm/lib/Transforms/Scalar/LICM.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Transforms/Scalar/LICM.cpp b/llvm/lib/Transforms/Scalar/LICM.cpp index eb7a64d765e..a794761a4ef 100644 --- a/llvm/lib/Transforms/Scalar/LICM.cpp +++ b/llvm/lib/Transforms/Scalar/LICM.cpp @@ -77,7 +77,7 @@ namespace { /// HoistRegion - Walk the specified region of the CFG (defined by all /// blocks dominated by the specified block, and that are in the current /// loop) in depth first order w.r.t the DominatorTree. This allows us to - /// visit defintions before uses, allowing us to hoist a loop body in one + /// visit definitions before uses, allowing us to hoist a loop body in one /// pass without iteration. /// void HoistRegion(DominatorTree::Node *N); @@ -240,7 +240,7 @@ void LICM::visitLoop(Loop *L, AliasSetTracker &AST) { /// HoistRegion - Walk the specified region of the CFG (defined by all blocks /// dominated by the specified block, and that are in the current loop) in depth -/// first order w.r.t the DominatorTree. This allows us to visit defintions +/// first order w.r.t the DominatorTree. This allows us to visit definitions /// before uses, allowing us to hoist a loop body in one pass without iteration. /// void LICM::HoistRegion(DominatorTree::Node *N) { |