From 230293b4c52d4ff22072982a1115f60dab50726b Mon Sep 17 00:00:00 2001 From: Andrew Lenharth Date: Wed, 19 Mar 2008 22:32:43 +0000 Subject: style and spelling git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48562 91177308-0d34-0410-b5e6-96231b3b80d8 --- tools/llvm-ld/Optimize.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tools') diff --git a/tools/llvm-ld/Optimize.cpp b/tools/llvm-ld/Optimize.cpp index 85c6074..31b0bf0 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. -- cgit v1.1