llvm-svn: 41168
This commit is contained in:
Nick Lewycky 2007-08-18 15:08:56 +00:00
parent 5dccc83b4b
commit a0d49dac26
1 changed files with 1 additions and 1 deletions

View File

@ -265,7 +265,7 @@ bool LICM::runOnLoop(Loop *L, LPPassManager &LPM) {
// //
// Traverse the body of the loop in depth first order on the dominator tree so // Traverse the body of the loop in depth first order on the dominator tree so
// that we are guaranteed to see definitions before we see uses. This allows // that we are guaranteed to see definitions before we see uses. This allows
// us to sink instructions in one pass, without iteration. AFter sinking // us to sink instructions in one pass, without iteration. After sinking
// instructions, we perform another pass to hoist them out of the loop. // instructions, we perform another pass to hoist them out of the loop.
// //
SinkRegion(DT->getNode(L->getHeader())); SinkRegion(DT->getNode(L->getHeader()));