From b64e0492a49525b2db279a60531e387ecbb5e738 Mon Sep 17 00:00:00 2001 From: Michael D Toguchi Date: Wed, 15 Apr 2020 09:56:40 -0700 Subject: [PATCH] [Driver][NFC] Fix -help information for -Xs options Signed-off-by: Michael D Toguchi --- clang/include/clang/Driver/Options.td | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/clang/include/clang/Driver/Options.td b/clang/include/clang/Driver/Options.td index 383a37bf57a1a..88d117a8a7be9 100644 --- a/clang/include/clang/Driver/Options.td +++ b/clang/include/clang/Driver/Options.td @@ -502,8 +502,8 @@ def Xsycl_linker : Separate<["-"], "Xsycl-target-linker">, def Xsycl_linker_EQ : JoinedAndSeparate<["-"], "Xsycl-target-linker=">, HelpText<"Pass to the SYCL based target linker identified by .">, MetaVarName<" ">, Flags<[CoreOption]>; -def Xs : Joined<["-"], "Xs">, HelpText<"Pass to the offline compiler.">, MetaVarName<", Flags<[CoreOption]>; -def Xs_separate : Separate<["-"], "Xs">, HelpText<"Pass to the offline compiler.">, MetaVarName<", Flags<[CoreOption]>; +def Xs : Joined<["-"], "Xs">, HelpText<"Pass to the offline compiler, adding the option specifier '-' to the .">, MetaVarName<"">, Flags<[CoreOption]>; +def Xs_separate : Separate<["-"], "Xs">, HelpText<"Pass to the offline compiler.">, MetaVarName<"">, Flags<[CoreOption]>; def z : Separate<["-"], "z">, Flags<[LinkerInput, RenderAsInput]>, HelpText<"Pass -z to the linker">, MetaVarName<"">, Group;