Omit periods at the end of command-line switch explanations for consistency
authorMisha Brukman <brukman+llvm@gmail.com>
Tue, 3 May 2005 05:36:14 +0000 (05:36 +0000)
committerMisha Brukman <brukman+llvm@gmail.com>
Tue, 3 May 2005 05:36:14 +0000 (05:36 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21664 91177308-0d34-0410-b5e6-96231b3b80d8

tools/llvmc/llvmc.cpp

index 7875aff18d745fe4fc04862352354be25c1d747f..d6409af3e0a89e5cce7ce0e378f3f3a5c3782964 100644 (file)
@@ -51,9 +51,9 @@ cl::opt<CompilerDriver::OptimizationLevels> OptLevel(cl::ZeroOrMore,
   cl::init(CompilerDriver::OPT_FAST_COMPILE),
   cl::values(
     clEnumValN(CompilerDriver::OPT_FAST_COMPILE,"O0",
-      "An alias for the -O1 option."),
+      "An alias for the -O1 option"),
     clEnumValN(CompilerDriver::OPT_FAST_COMPILE,"O1",
-      "Optimize for compilation speed, not execution speed."),
+      "Optimize for compilation speed, not execution speed"),
     clEnumValN(CompilerDriver::OPT_SIMPLE,"O2",
       "Perform simple translation time optimizations"),
     clEnumValN(CompilerDriver::OPT_AGGRESSIVE,"O3",