diff options
author | Nick Lewycky <nicholas@mxc.ca> | 2007-08-18 15:08:56 +0000 |
---|---|---|
committer | Nick Lewycky <nicholas@mxc.ca> | 2007-08-18 15:08:56 +0000 |
commit | af5cbc82bb6410129425c98bbfc1ffc4c3d0f411 (patch) | |
tree | 8c333ba22e3064eae5687c304694ca3e5a65417a /lib | |
parent | ab3c9b1f95fc7ffd4144babd502c112d43aec7c4 (diff) | |
download | external_llvm-af5cbc82bb6410129425c98bbfc1ffc4c3d0f411.zip external_llvm-af5cbc82bb6410129425c98bbfc1ffc4c3d0f411.tar.gz external_llvm-af5cbc82bb6410129425c98bbfc1ffc4c3d0f411.tar.bz2 |
Typo.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@41168 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Transforms/Scalar/LICM.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Transforms/Scalar/LICM.cpp b/lib/Transforms/Scalar/LICM.cpp index ede3bd9..7f4d783 100644 --- a/lib/Transforms/Scalar/LICM.cpp +++ b/lib/Transforms/Scalar/LICM.cpp @@ -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 // 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. // SinkRegion(DT->getNode(L->getHeader())); |