summaryrefslogtreecommitdiff
path: root/tools/llvm-ld
diff options
context:
space:
mode:
authorAndrew Lenharth <andrewl@lenharth.org>2008-03-19 22:32:43 +0000
committerAndrew Lenharth <andrewl@lenharth.org>2008-03-19 22:32:43 +0000
commit230293b4c52d4ff22072982a1115f60dab50726b (patch)
tree410299ff7d2af0520ada4941706443d33b840857 /tools/llvm-ld
parentb9c432fe77d4b3bc5e7f09aa79ac703362296b52 (diff)
downloadllvm-230293b4c52d4ff22072982a1115f60dab50726b.tar.gz
llvm-230293b4c52d4ff22072982a1115f60dab50726b.tar.bz2
llvm-230293b4c52d4ff22072982a1115f60dab50726b.tar.xz
style and spelling
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48562 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/llvm-ld')
-rw-r--r--tools/llvm-ld/Optimize.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/llvm-ld/Optimize.cpp b/tools/llvm-ld/Optimize.cpp
index 85c6074843..31b0bf0a59 100644
--- a/tools/llvm-ld/Optimize.cpp
+++ b/tools/llvm-ld/Optimize.cpp
@@ -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.