style and spelling

llvm-svn: 48562
This commit is contained in:
Andrew Lenharth 2008-03-19 22:32:43 +00:00
parent fbf53a4d1d
commit 0d537491e7
1 changed files with 2 additions and 2 deletions

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.