diff --git a/lld/MachO/Options.td b/lld/MachO/Options.td index b615934c87e59..945efdaea75a7 100644 --- a/lld/MachO/Options.td +++ b/lld/MachO/Options.td @@ -46,15 +46,20 @@ def lto_legacy_pass_manager: Flag<["--"], "lto-legacy-pass-manager">, def no_lto_legacy_pass_manager : Flag<["--"], "no-lto-legacy-pass-manager">, HelpText<"Use the new pass manager in LLVM">, Group; -def time_trace: Flag<["--"], "time-trace">, HelpText<"Record time trace">; +def time_trace: Flag<["--"], "time-trace">, HelpText<"Record time trace">, + Group; def time_trace_granularity_eq: Joined<["--"], "time-trace-granularity=">, - HelpText<"Minimum time granularity (in microseconds) traced by time profiler">; + HelpText<"Minimum time granularity (in microseconds) traced by time profiler">, + Group; def time_trace_file_eq: Joined<["--"], "time-trace-file=">, - HelpText<"Specify time trace output file">; + HelpText<"Specify time trace output file">, + Group; def deduplicate_literals: Flag<["--"], "deduplicate-literals">, - HelpText<"Enable literal deduplication">; + HelpText<"Enable literal deduplication">, + Group; def print_dylib_search: Flag<["--"], "print-dylib-search">, - HelpText<"Print which paths lld searched when trying to find dylibs">; + HelpText<"Print which paths lld searched when trying to find dylibs">, + Group; // This is a complete Options.td compiled from Apple's ld(1) manpage // dated 2018-03-07 and cross checked with ld64 source code in repo