From: David Majnemer Date: Mon, 24 Mar 2014 05:53:13 +0000 (+0000) Subject: Driver: Fix a typo in a command line description X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d3c769ecbe0be5b43c74f74b530244572375a2e6;p=clang Driver: Fix a typo in a command line description Thanks to Richard Smith for catching this! git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@204588 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/Driver/CLCompatOptions.td b/include/clang/Driver/CLCompatOptions.td index f5cd2bf1ff..d33e6b67f0 100644 --- a/include/clang/Driver/CLCompatOptions.td +++ b/include/clang/Driver/CLCompatOptions.td @@ -62,9 +62,9 @@ def _SLASH_GR : CLFlag<"GR">, HelpText<"Enable RTTI">, Alias; def _SLASH_GR_ : CLFlag<"GR-">, HelpText<"Disable RTTI">, Alias; def _SLASH_GF_ : CLFlag<"GF-">, HelpText<"Disable string pooling">, Alias; -def _SLASH_Gy : CLFlag<"Gy">, HelpText<"Put each function in it's own section">, +def _SLASH_Gy : CLFlag<"Gy">, HelpText<"Put each function in its own section">, Alias; -def _SLASH_Gy_ : CLFlag<"Gy-">, HelpText<"Don't put each function in it's own section">, +def _SLASH_Gy_ : CLFlag<"Gy-">, HelpText<"Don't put each function in its own section">, Alias; def _SLASH_help : CLFlag<"help">, Alias, HelpText<"Display available options">;