From 537724b316be2c452a097eddec5a11651795b2e8 Mon Sep 17 00:00:00 2001 From: Michael D Toguchi Date: Tue, 29 Sep 2020 15:27:23 -0700 Subject: [PATCH] [Driver][SYCL][NFC] Add help information for -Wno-sycl-strict -Wno-sycl-strict is used in the compatibility tool user guide. Add to the help to provide additional (if minimal) information. --- clang/include/clang/Driver/Options.td | 1 + 1 file changed, 1 insertion(+) diff --git a/clang/include/clang/Driver/Options.td b/clang/include/clang/Driver/Options.td index 20543d6c5d91c..cabfd0edd9536 100644 --- a/clang/include/clang/Driver/Options.td +++ b/clang/include/clang/Driver/Options.td @@ -498,6 +498,7 @@ def Wno_nonportable_cfstrings : Joined<["-"], "Wno-nonportable-cfstrings">, Grou Flags<[CC1Option]>; def Wnonportable_cfstrings : Joined<["-"], "Wnonportable-cfstrings">, Group, Flags<[CC1Option]>; +def Wno_sycl_strict : Joined<["-"], "Wno-sycl-strict">, Group, HelpText<"Disable warnings which enforce strict SYCL language compatibility.">; def Wp_COMMA : CommaJoined<["-"], "Wp,">, HelpText<"Pass the comma separated arguments in to the preprocessor">, MetaVarName<"">, Group;