From: Andrew Lenharth Date: Wed, 19 Mar 2008 22:32:43 +0000 (+0000) Subject: style and spelling X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=230293b4c52d4ff22072982a1115f60dab50726b;p=oota-llvm.git style and spelling git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48562 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/tools/llvm-ld/Optimize.cpp b/tools/llvm-ld/Optimize.cpp index 85c60748438..31b0bf0a594 100644 --- a/tools/llvm-ld/Optimize.cpp +++ b/tools/llvm-ld/Optimize.cpp @@ -32,7 +32,7 @@ using namespace llvm; static cl::list OptimizationList(cl::desc("Optimizations available:")); -//Don't veryify at the end +//Don't verify at the end static cl::opt 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.