Skip to content

Commit

Permalink
[Driver] Remove -coverage-notes-file and -coverage-data-file in favor…
Browse files Browse the repository at this point in the history
… of their Joined = form
  • Loading branch information
MaskRay committed Aug 15, 2023
1 parent 64473f1 commit 44e6c11
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions clang/include/clang/Driver/Options.td
Original file line number Diff line number Diff line change
Expand Up @@ -6559,16 +6559,10 @@ def fdump_vtable_layouts : Flag<["-"], "fdump-vtable-layouts">,
def fmerge_functions : Flag<["-"], "fmerge-functions">,
HelpText<"Permit merging of identical functions when optimizing.">,
MarshallingInfoFlag<CodeGenOpts<"MergeFunctions">>;
def coverage_data_file : Separate<["-"], "coverage-data-file">,
HelpText<"Emit coverage data to this filename.">,
def : Joined<["-"], "coverage-data-file=">,
MarshallingInfoString<CodeGenOpts<"CoverageDataFile">>;
def coverage_data_file_EQ : Joined<["-"], "coverage-data-file=">,
Alias<coverage_data_file>;
def coverage_notes_file : Separate<["-"], "coverage-notes-file">,
HelpText<"Emit coverage notes to this filename.">,
def : Joined<["-"], "coverage-notes-file=">,
MarshallingInfoString<CodeGenOpts<"CoverageNotesFile">>;
def coverage_notes_file_EQ : Joined<["-"], "coverage-notes-file=">,
Alias<coverage_notes_file>;
def coverage_version_EQ : Joined<["-"], "coverage-version=">,
HelpText<"Four-byte version string for gcov files.">;
def dump_coverage_mapping : Flag<["-"], "dump-coverage-mapping">,
Expand Down

0 comments on commit 44e6c11

Please sign in to comment.