Fix a typo, depricated -> deprecated

Differential Revision: https://reviews.llvm.org/D22849

llvm-svn: 282534
This commit is contained in:
Martin Storsjo 2016-09-27 19:45:30 +00:00
parent ec1c5a2048
commit 055a70263b
2 changed files with 2 additions and 2 deletions

View File

@ -1731,7 +1731,7 @@ void PrintHelpMessage(bool Hidden = false, bool Categorized = false);
/// the control of the client. The options should be modified before calling /// the control of the client. The options should be modified before calling
/// llvm::cl::ParseCommandLineOptions(). /// 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 /// to be modified by tools or libraries should be handled by sane APIs rather
/// than just handing around a global list. /// than just handing around a global list.
StringMap<Option *> &getRegisteredOptions(SubCommand &Sub = *TopLevelSubCommand); StringMap<Option *> &getRegisteredOptions(SubCommand &Sub = *TopLevelSubCommand);

View File

@ -66,7 +66,7 @@ CompressDebugSections("compress-debug-sections", cl::ValueOptional,
clEnumValN(DebugCompressionType::DCT_Zlib, "zlib", clEnumValN(DebugCompressionType::DCT_Zlib, "zlib",
"Use zlib compression"), "Use zlib compression"),
clEnumValN(DebugCompressionType::DCT_ZlibGnu, "zlib-gnu", clEnumValN(DebugCompressionType::DCT_ZlibGnu, "zlib-gnu",
"Use zlib-gnu compression (depricated)"), "Use zlib-gnu compression (deprecated)"),
clEnumValEnd)); clEnumValEnd));
static cl::opt<bool> static cl::opt<bool>