style and spelling
authorAndrew Lenharth <andrewl@lenharth.org>
Wed, 19 Mar 2008 22:32:43 +0000 (22:32 +0000)
committerAndrew Lenharth <andrewl@lenharth.org>
Wed, 19 Mar 2008 22:32:43 +0000 (22:32 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48562 91177308-0d34-0410-b5e6-96231b3b80d8

tools/llvm-ld/Optimize.cpp

index 85c6074843873ee2f5fe512700ac9283a6387f59..31b0bf0a594e4ebe83e30d3e794a8c5992c4e2e7 100644 (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.