[llvm] r200220 - Do not reference llvm-gcc from bugpoint
Duncan P. N. Exon Smith
dexonsmith at apple.com
Tue Feb 18 07:46:37 PST 2014
On 2014 Jan 27, at 05:44, Tobias Grosser <tobias at grosser.es> wrote:
> Author: grosser
> Date: Mon Jan 27 07:44:58 2014
> New Revision: 200220
>
> URL: http://llvm.org/viewvc/llvm-project?rev=200220&view=rev
> Log:
> Do not reference llvm-gcc from bugpoint
>
> Reiterating: llvm-gcc is dead since a long time.
Nice change! Grammar nitpick below.
> Modified:
> llvm/trunk/tools/bugpoint/bugpoint.cpp
>
> Modified: llvm/trunk/tools/bugpoint/bugpoint.cpp
> URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/tools/bugpoint/bugpoint.cpp?rev=200220&r1=200219&r2=200220&view=diff
> ==============================================================================
> --- llvm/trunk/tools/bugpoint/bugpoint.cpp (original)
> +++ llvm/trunk/tools/bugpoint/bugpoint.cpp Mon Jan 27 07:44:58 2014
> @@ -72,15 +72,15 @@ StandardLinkOpts("std-link-opts",
>
> static cl::opt<bool>
> OptLevelO1("O1",
> - cl::desc("Optimization level 1. Similar to llvm-gcc -O1"));
> + cl::desc("Optimization level 1. Identical with 'opt -O1'"));
These should be "Identical to", not "Identical with".
>
> static cl::opt<bool>
> OptLevelO2("O2",
> - cl::desc("Optimization level 2. Similar to llvm-gcc -O2"));
> + cl::desc("Optimization level 2. Identical with 'opt -O2'"));
>
> static cl::opt<bool>
> OptLevelO3("O3",
> - cl::desc("Optimization level 3. Similar to llvm-gcc -O3"));
> + cl::desc("Optimization level 3. Identical with 'opt -O3'"));
>
> static cl::opt<std::string>
> OverrideTriple("mtriple", cl::desc("Override target triple for module"));
>
>
> _______________________________________________
> llvm-commits mailing list
> llvm-commits at cs.uiuc.edu
> http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits
More information about the llvm-commits
mailing list