summaryrefslogtreecommitdiff
path: root/tools/bugpoint
diff options
context:
space:
mode:
authorTobias Grosser <tobias@grosser.es>2014-02-19 22:16:49 +0000
committerTobias Grosser <tobias@grosser.es>2014-02-19 22:16:49 +0000
commit4c18e2e913ba3fc9b7dfc92ebbce7e278f5ae677 (patch)
tree1a8550355f8984e70ea133ffca8d6dbc8c81b96e /tools/bugpoint
parentfccbee8faf00f75fbdb572360b69062bfed6ba86 (diff)
downloadllvm-4c18e2e913ba3fc9b7dfc92ebbce7e278f5ae677.tar.gz
llvm-4c18e2e913ba3fc9b7dfc92ebbce7e278f5ae677.tar.bz2
llvm-4c18e2e913ba3fc9b7dfc92ebbce7e278f5ae677.tar.xz
Fix typo
Found by: Duncan P. N. Exon Smith <dexonsmith@apple.com> git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@201726 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/bugpoint')
-rw-r--r--tools/bugpoint/bugpoint.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/bugpoint/bugpoint.cpp b/tools/bugpoint/bugpoint.cpp
index e0941914d8..b2023e937a 100644
--- a/tools/bugpoint/bugpoint.cpp
+++ b/tools/bugpoint/bugpoint.cpp
@@ -72,15 +72,15 @@ StandardLinkOpts("std-link-opts",
static cl::opt<bool>
OptLevelO1("O1",
- cl::desc("Optimization level 1. Identical with 'opt -O1'"));
+ cl::desc("Optimization level 1. Identical to 'opt -O1'"));
static cl::opt<bool>
OptLevelO2("O2",
- cl::desc("Optimization level 2. Identical with 'opt -O2'"));
+ cl::desc("Optimization level 2. Identical to 'opt -O2'"));
static cl::opt<bool>
OptLevelO3("O3",
- cl::desc("Optimization level 3. Identical with 'opt -O3'"));
+ cl::desc("Optimization level 3. Identical to 'opt -O3'"));
static cl::opt<std::string>
OverrideTriple("mtriple", cl::desc("Override target triple for module"));