@@ -4204,13 +4204,15 @@ def ftrigraphs : Flag<["-"], "ftrigraphs">, Group<f_Group>,
42044204def fno_trigraphs : Flag<["-"], "fno-trigraphs">, Group<f_Group>,
42054205 HelpText<"Do not process trigraph sequences">,
42064206 Visibility<[ClangOption, CC1Option]>;
4207- defm unique_source_file_names: BoolOption<"f", "unique-source-file-names",
4208- CodeGenOpts<"UniqueSourceFileNames">, DefaultFalse,
4209- PosFlag<SetTrue, [], [CC1Option], "Allow">,
4210- NegFlag<SetFalse, [], [], "Do not allow">,
4211- BothFlags<[], [ClangOption], " the compiler to assume that each translation unit has a unique "
4212- "source file name at link time">>,
4213- Group<f_clang_Group>;
4207+ def funique_source_file_names: Flag<["-"], "funique-source-file-names">, Group<f_Group>,
4208+ HelpText<"Allow the compiler to assume that each translation unit has a unique "
4209+ "source file identifier (see funique-source-file-identifier) at link time">;
4210+ def fno_unique_source_file_names: Flag<["-"], "fno-unique-source-file-names">;
4211+ def unique_source_file_identifier_EQ: Joined<["-"], "funique-source-file-identifier=">, Group<f_Group>,
4212+ Visibility<[ClangOption, CC1Option]>,
4213+ HelpText<"Specify the source file identifier for -funique-source-file-names; "
4214+ "uses the source file path if not specified">,
4215+ MarshallingInfoString<CodeGenOpts<"UniqueSourceFileIdentifier">>;
42144216def funsigned_bitfields : Flag<["-"], "funsigned-bitfields">, Group<f_Group>;
42154217def funsigned_char : Flag<["-"], "funsigned-char">, Group<f_Group>;
42164218def fno_unsigned_char : Flag<["-"], "fno-unsigned-char">;
0 commit comments