[llvm-commits] [llvm] r48550 - /llvm/trunk/tools/llvm-ld/Optimize.cpp
Bill Wendling
isanbard at gmail.com
Wed Mar 19 14:03:45 PDT 2008
On Wed, Mar 19, 2008 at 1:49 PM, Andrew Lenharth <alenhar2 at cs.uiuc.edu> wrote:
> Author: alenhar2
> Date: Wed Mar 19 15:49:51 2008
> New Revision: 48550
>
> URL: http://llvm.org/viewvc/llvm-project?rev=48550&view=rev
> Log:
> llvm-ld deserves disable-verify too. opt shouldn't have all the fun options.
>
> --- llvm/trunk/tools/llvm-ld/Optimize.cpp (original)
> +++ llvm/trunk/tools/llvm-ld/Optimize.cpp Wed Mar 19 15:49:51 2008
> @@ -32,6 +32,9 @@
> static cl::list<const PassInfo*, bool, PassNameParser>
> OptimizationList(cl::desc("Optimizations available:"));
>
> +//Don't veryify at the end
Typo: veryify -> verify.
> // Make sure everything is still good.
> - Passes.add(createVerifierPass());
> + if(!DontVerify)
A space after "if" please.
Thanks!
-bw
More information about the llvm-commits
mailing list