[llvm-commits] [llvm] r56255 - /llvm/trunk/tools/opt/opt.cpp

Bill Wendling isanbard at gmail.com
Tue Sep 16 15:39:13 PDT 2008


On Tue, Sep 16, 2008 at 3:25 PM, Devang Patel <dpatel at apple.com> wrote:
>  static cl::opt<bool>
> +OptLevelO1("O1",
> +           cl::desc("Optimization level 1. Similar to llvm-gcc -O1"));
> +
> +static cl::opt<bool>
> +OptLevelO2("O2",
> +           cl::desc("Optimization level 1. Similar to llvm-gcc -O2"));
> +
> +static cl::opt<bool>
> +OptLevelO3("O3",
> +           cl::desc("Optimization level 1. Similar to llvm-gcc -O3"));
> +

You'll probably want to change the descriptions for each of those. :-)

-bw



More information about the llvm-commits mailing list