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 | 0d537491e78e3d14d8d3a112daf6a060af150c01 (patch) | |
| tree | a93ff46293e195879258ef9a15605bbcdc908b6b /llvm/tools | |
| parent | fbf53a4d1d0daa55d6000c381b556364447d75ce (diff) | |
| download | bcm5719-llvm-0d537491e78e3d14d8d3a112daf6a060af150c01.tar.gz bcm5719-llvm-0d537491e78e3d14d8d3a112daf6a060af150c01.zip | |
style and spelling
llvm-svn: 48562
Diffstat (limited to 'llvm/tools')
| -rw-r--r-- | llvm/tools/llvm-ld/Optimize.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/tools/llvm-ld/Optimize.cpp b/llvm/tools/llvm-ld/Optimize.cpp index 85c60748438..31b0bf0a594 100644 --- a/llvm/tools/llvm-ld/Optimize.cpp +++ b/llvm/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. |

