[llvm-commits] [llvm] r48562 -	/llvm/trunk/tools/llvm-ld/Optimize.cpp
    Andrew Lenharth 
    alenhar2 at cs.uiuc.edu
       
    Wed Mar 19 15:32:43 PDT 2008
    
    
  
Author: alenhar2
Date: Wed Mar 19 17:32:43 2008
New Revision: 48562
URL: http://llvm.org/viewvc/llvm-project?rev=48562&view=rev
Log:
style and spelling
Modified:
    llvm/trunk/tools/llvm-ld/Optimize.cpp
Modified: llvm/trunk/tools/llvm-ld/Optimize.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/tools/llvm-ld/Optimize.cpp?rev=48562&r1=48561&r2=48562&view=diff
==============================================================================
--- llvm/trunk/tools/llvm-ld/Optimize.cpp (original)
+++ llvm/trunk/tools/llvm-ld/Optimize.cpp Wed Mar 19 17:32:43 2008
@@ -32,7 +32,7 @@
 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 @@
   }
 
   // Make sure everything is still good.
-  if(!DontVerify)
+  if (!DontVerify)
     Passes.add(createVerifierPass());
 
   // Run our queue of passes all at once now, efficiently.
    
    
More information about the llvm-commits
mailing list