aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorAndrew Lenharth <alenhar2@cs.uiuc.edu>2008-03-19 22:32:43 +0000
committerAndrew Lenharth <alenhar2@cs.uiuc.edu>2008-03-19 22:32:43 +0000
commit0e7614e4f71407a59620555f432ad156a5d04754 (patch)
tree410299ff7d2af0520ada4941706443d33b840857 /tools
parent4210b50486251d02ad3f1ec9c158d619111d61a2 (diff)
downloadexternal_llvm-0e7614e4f71407a59620555f432ad156a5d04754.zip
external_llvm-0e7614e4f71407a59620555f432ad156a5d04754.tar.gz
external_llvm-0e7614e4f71407a59620555f432ad156a5d04754.tar.bz2
style and spelling
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48562 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools')
-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 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<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.