[llvm] r282534 - Fix a typo, depricated -> deprecated
Martin Storsjo via llvm-commits
llvm-commits at lists.llvm.org
Tue Sep 27 12:45:30 PDT 2016
Author: mstorsjo
Date: Tue Sep 27 14:45:30 2016
New Revision: 282534
URL: http://llvm.org/viewvc/llvm-project?rev=282534&view=rev
Log:
Fix a typo, depricated -> deprecated
Differential Revision: https://reviews.llvm.org/D22849
Modified:
llvm/trunk/include/llvm/Support/CommandLine.h
llvm/trunk/tools/llvm-mc/llvm-mc.cpp
Modified: llvm/trunk/include/llvm/Support/CommandLine.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Support/CommandLine.h?rev=282534&r1=282533&r2=282534&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Support/CommandLine.h (original)
+++ llvm/trunk/include/llvm/Support/CommandLine.h Tue Sep 27 14:45:30 2016
@@ -1731,7 +1731,7 @@ void PrintHelpMessage(bool Hidden = fals
/// the control of the client. The options should be modified before calling
/// llvm::cl::ParseCommandLineOptions().
///
-/// Hopefully this API can be depricated soon. Any situation where options need
+/// Hopefully this API can be deprecated soon. Any situation where options need
/// to be modified by tools or libraries should be handled by sane APIs rather
/// than just handing around a global list.
StringMap<Option *> &getRegisteredOptions(SubCommand &Sub = *TopLevelSubCommand);
Modified: llvm/trunk/tools/llvm-mc/llvm-mc.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/tools/llvm-mc/llvm-mc.cpp?rev=282534&r1=282533&r2=282534&view=diff
==============================================================================
--- llvm/trunk/tools/llvm-mc/llvm-mc.cpp (original)
+++ llvm/trunk/tools/llvm-mc/llvm-mc.cpp Tue Sep 27 14:45:30 2016
@@ -66,7 +66,7 @@ CompressDebugSections("compress-debug-se
clEnumValN(DebugCompressionType::DCT_Zlib, "zlib",
"Use zlib compression"),
clEnumValN(DebugCompressionType::DCT_ZlibGnu, "zlib-gnu",
- "Use zlib-gnu compression (depricated)"),
+ "Use zlib-gnu compression (deprecated)"),
clEnumValEnd));
static cl::opt<bool>
More information about the llvm-commits
mailing list