diff options
author | Tobias Grosser <tobias@grosser.es> | 2014-02-19 22:16:49 +0000 |
---|---|---|
committer | Tobias Grosser <tobias@grosser.es> | 2014-02-19 22:16:49 +0000 |
commit | ff57ba18b9405ea6e70794b19dd9f687e03e07f2 (patch) | |
tree | f0feead199f596438c7589bf4b89e53193ed90d2 | |
parent | 25e18177871f8b1d86258ec9f845f2c333a54fb4 (diff) | |
download | bcm5719-llvm-ff57ba18b9405ea6e70794b19dd9f687e03e07f2.tar.gz bcm5719-llvm-ff57ba18b9405ea6e70794b19dd9f687e03e07f2.zip |
Fix typo
Found by: Duncan P. N. Exon Smith <dexonsmith@apple.com>
llvm-svn: 201726
-rw-r--r-- | llvm/tools/bugpoint/bugpoint.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/tools/bugpoint/bugpoint.cpp b/llvm/tools/bugpoint/bugpoint.cpp index e0941914d8d..b2023e937a2 100644 --- a/llvm/tools/bugpoint/bugpoint.cpp +++ b/llvm/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")); |