diff options
author | Tanya Lattner <tonic@nondot.org> | 2007-09-17 20:37:09 +0000 |
---|---|---|
committer | Tanya Lattner <tonic@nondot.org> | 2007-09-17 20:37:09 +0000 |
commit | edc61c2982cba9da1328323730fd223ae4943905 (patch) | |
tree | 538a591bb9b5d0be98b366864df725602f0db4e3 | |
parent | b65549acc3a32c9c38e6bba239fd86a501704e45 (diff) |
Spell things correctly.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/branches/release_21@42053 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | tools/opt/opt.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/opt/opt.cpp b/tools/opt/opt.cpp index 78934d9c18..07a4d55340 100644 --- a/tools/opt/opt.cpp +++ b/tools/opt/opt.cpp @@ -277,7 +277,7 @@ void AddStandardCompilePasses(PassManager &PM) { addPass(PM, createLoopRotatePass()); addPass(PM, createLICMPass()); // Hoist loop invariants addPass(PM, createLoopUnswitchPass()); // Unswitch loops. - // Diable for 2.1 + // Disable for 2.1 //addPass(PM, createLoopIndexSplitPass()); // Index split loops. addPass(PM, createInstructionCombiningPass()); // Clean up after LICM/reassoc addPass(PM, createIndVarSimplifyPass()); // Canonicalize indvars |