diff options
author | Andrew Lenharth <andrewl@lenharth.org> | 2008-03-19 22:32:43 +0000 |
---|---|---|
committer | Andrew Lenharth <andrewl@lenharth.org> | 2008-03-19 22:32:43 +0000 |
commit | 230293b4c52d4ff22072982a1115f60dab50726b (patch) | |
tree | 410299ff7d2af0520ada4941706443d33b840857 /tools/llvm-ld | |
parent | b9c432fe77d4b3bc5e7f09aa79ac703362296b52 (diff) | |
download | external_llvm-230293b4c52d4ff22072982a1115f60dab50726b.zip external_llvm-230293b4c52d4ff22072982a1115f60dab50726b.tar.gz external_llvm-230293b4c52d4ff22072982a1115f60dab50726b.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/llvm-ld')
-rw-r--r-- | tools/llvm-ld/Optimize.cpp | 4 |
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. |