style and spelling

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48562 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Andrew Lenharth 2008-03-19 22:32:43 +00:00
parent b9c432fe77
commit 230293b4c5

View File

@ -32,7 +32,7 @@ using namespace llvm;
static cl::list<const PassInfo*, bool, PassNameParser>
OptimizationList(cl::desc("Optimizations available:"));
//Don't veryify at the end
//Don't verify at the end
static cl::opt<bool> DontVerify("disable-verify", cl::ReallyHidden);
// Optimization Enumeration
@ -209,7 +209,7 @@ void Optimize(Module* M) {
}
// Make sure everything is still good.
if(!DontVerify)
if (!DontVerify)
Passes.add(createVerifierPass());
// Run our queue of passes all at once now, efficiently.