Fix typo
authorTobias Grosser <tobias@grosser.es>
Wed, 19 Feb 2014 22:16:49 +0000 (22:16 +0000)
committerTobias Grosser <tobias@grosser.es>
Wed, 19 Feb 2014 22:16:49 +0000 (22:16 +0000)
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

tools/bugpoint/bugpoint.cpp

index e0941914d8d690937e596b9fcf98a425078ce4ab..b2023e937a2fab980a7638b64212c72672d80460 100644 (file)
@@ -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"));