Skip to content

Commit dfd98ae

Browse files
authored
[Driver][NFC] Fix -help information for -Xs options (#1530)
Signed-off-by: Michael D Toguchi <[email protected]>
1 parent ad441a0 commit dfd98ae

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

clang/include/clang/Driver/Options.td

+2-2
Original file line numberDiff line numberDiff line change
@@ -502,8 +502,8 @@ def Xsycl_linker : Separate<["-"], "Xsycl-target-linker">,
502502
def Xsycl_linker_EQ : JoinedAndSeparate<["-"], "Xsycl-target-linker=">,
503503
HelpText<"Pass <arg> to the SYCL based target linker identified by <triple>.">,
504504
MetaVarName<"<triple> <arg>">, Flags<[CoreOption]>;
505-
def Xs : Joined<["-"], "Xs">, HelpText<"Pass <arg> to the offline compiler.">, MetaVarName<"<arg">, Flags<[CoreOption]>;
506-
def Xs_separate : Separate<["-"], "Xs">, HelpText<"Pass <arg> to the offline compiler.">, MetaVarName<"<arg">, Flags<[CoreOption]>;
505+
def Xs : Joined<["-"], "Xs">, HelpText<"Pass <arg> to the offline compiler, adding the option specifier '-' to the <arg>.">, MetaVarName<"<arg>">, Flags<[CoreOption]>;
506+
def Xs_separate : Separate<["-"], "Xs">, HelpText<"Pass <arg> to the offline compiler.">, MetaVarName<"<arg>">, Flags<[CoreOption]>;
507507
def z : Separate<["-"], "z">, Flags<[LinkerInput, RenderAsInput]>,
508508
HelpText<"Pass -z <arg> to the linker">, MetaVarName<"<arg>">,
509509
Group<Link_Group>;

0 commit comments

Comments
 (0)