diff --git a/clang/include/clang/Driver/Options.td b/clang/include/clang/Driver/Options.td --- a/clang/include/clang/Driver/Options.td +++ b/clang/include/clang/Driver/Options.td @@ -934,7 +934,8 @@ "compilation unit but different for different compilation units. " "It is used to externalize device-side static variables for single " "source offloading languages CUDA and HIP so that they can be " - "accessed by the host code of the same compilation unit.">; + "accessed by the host code of the same compilation unit.">, + MarshallingInfoString>; def fuse_cuid_EQ : Joined<["-"], "fuse-cuid=">, HelpText<"Method to generate ID's for compilation units for single source " "offloading languages CUDA and HIP: 'hash' (ID's generated by hashing " diff --git a/clang/lib/Frontend/CompilerInvocation.cpp b/clang/lib/Frontend/CompilerInvocation.cpp --- a/clang/lib/Frontend/CompilerInvocation.cpp +++ b/clang/lib/Frontend/CompilerInvocation.cpp @@ -3585,11 +3585,6 @@ } } - - if (auto *A = Args.getLastArg(OPT_cuid_EQ)) { - Opts.CUID = std::string(A->getValue()); - } - if (Opts.ObjC) { if (Arg *arg = Args.getLastArg(OPT_fobjc_runtime_EQ)) { StringRef value = arg->getValue();