summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--dwarflint/check_nodebug.cc2
-rw-r--r--dwarflint/locstats.cc7
2 files changed, 4 insertions, 5 deletions
diff --git a/dwarflint/check_nodebug.cc b/dwarflint/check_nodebug.cc
index 03df1122..f658c615 100644
--- a/dwarflint/check_nodebug.cc
+++ b/dwarflint/check_nodebug.cc
@@ -30,7 +30,7 @@
static void_option ignore_missing
("Don't complain if files have no DWARF at all",
- "ignore", 'i');
+ "nodebug:ignore", 'i');
class check_nodebug
: public check<check_nodebug>
diff --git a/dwarflint/locstats.cc b/dwarflint/locstats.cc
index 9b6f5fa2..0fb40282 100644
--- a/dwarflint/locstats.cc
+++ b/dwarflint/locstats.cc
@@ -43,18 +43,17 @@ namespace
string_option opt_ignore
("Skip certain DIEs. class may be one of single_addr, artificial, inlined, \
inlined_subroutine, no_coverage, mutable, or immutable.",
- "class[,...]", "ignore");
+ "class[,...]", "locstats:ignore");
string_option opt_dump
("Dump certain DIEs. For classes, see option 'ignore'.",
- "class[,...]", "dump");
+ "class[,...]", "locstats:dump");
string_option opt_tabulation_rule
("Rule for sorting results into buckets. start is either integer 0..100, \
or special value 0.0 indicating cases with no coverage whatsoever \
(i.e. not those that happen to round to 0%).",
- "start[:step][,...]",
- "tabulate");
+ "start[:step][,...]", "locstats:tabulate");
class locstats
: public highlevel_check<locstats>