From ed7b026cd0aa605c0959a533ac7a962f95d6f949 Mon Sep 17 00:00:00 2001 From: Premanand M Rao Date: Mon, 9 Sep 2024 13:27:09 -0700 Subject: [PATCH] Fix conflict - one more change --- clang/include/clang/Driver/Options.td | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/clang/include/clang/Driver/Options.td b/clang/include/clang/Driver/Options.td index 8387542df36ef..6ec10338c5583 100644 --- a/clang/include/clang/Driver/Options.td +++ b/clang/include/clang/Driver/Options.td @@ -7006,6 +7006,14 @@ defm sycl_use_integration_headers : BoolFOption<"sycl-use-integration-headers", "communication between the host and the device compilations. SYCL Only">>; } // let Group = sycl_Group +// FIXME: -fsycl-explicit-simd is deprecated. remove it when support is dropped. +def : Flag<["-"], "fsycl-explicit-simd">, Flags<[Deprecated]>, + Group, + HelpText<"Enable SYCL explicit SIMD extension. (deprecated)">; +def : Flag<["-"], "fno-sycl-explicit-simd">, + Flags<[Deprecated]>, Group, + HelpText<"Disable SYCL explicit SIMD extension. (deprecated)">; + // OS-specific options let Flags = [TargetSpecific] in { defm android_pad_segment : BooleanFFlag<"android-pad-segment">, Group;