@@ -286,6 +286,8 @@ static opt<bool> Verify("verify", desc("Verify the DWARF debug info."),
286
286
cat(DwarfDumpCategory));
287
287
static opt<ErrorDetailLevel> ErrorDetails (
288
288
" error-display" , init(Unspecified),
289
+ desc(" Set the level of detail and summary to display when verifying "
290
+ " (implies --verify)" ),
289
291
values(clEnumValN(NoDetailsOrSummary, " quiet" ,
290
292
" Only display whether errors occurred." ),
291
293
clEnumValN(NoDetailsOnlySummary, " summary" ,
@@ -296,10 +298,10 @@ static opt<ErrorDetailLevel> ErrorDetails(
296
298
" Display each error as well as a summary. [default]" )),
297
299
cat(DwarfDumpCategory));
298
300
static opt<std::string> JsonSummaryFile (
299
- " json-summary-file" , cl:: init(" " ),
300
- cl:: desc(" Output JSON-formatted error summary to the specified file. "
301
- " (Implies -verify)" ),
302
- cl:: value_desc(" filename.json" ), cat(DwarfDumpCategory));
301
+ " json-summary-file" , init(" " ),
302
+ desc(" Output JSON-formatted error summary to the specified file. "
303
+ " (Implies - -verify)" ),
304
+ value_desc(" filename.json" ), cat(DwarfDumpCategory));
303
305
static opt<bool > Quiet (" quiet" , desc(" Use with -verify to not emit to STDOUT." ),
304
306
cat(DwarfDumpCategory));
305
307
static opt<bool > DumpUUID (" uuid" , desc(" Show the UUID for each architecture." ),
0 commit comments