Index: llvm/trunk/docs/CommandGuide/llvm-dwarfdump.rst =================================================================== --- llvm/trunk/docs/CommandGuide/llvm-dwarfdump.rst +++ llvm/trunk/docs/CommandGuide/llvm-dwarfdump.rst @@ -35,9 +35,9 @@ .. option:: -c, --show-children - Show a debug info entry's children when using - the :option:`--debug-info`, :option:`--find`, - and :option:`--name` options. + Show a debug info entry's children when selectively printing with + the `=` argument of :option:`--debug-info`, or options such + as :option:`--find` or :option:`--name`. .. option:: --color @@ -88,9 +88,9 @@ .. option:: -p, --show-parents - Show a debug info entry's parent objects when using the - :option:`--debug-info`, :option:`--find`, and - :option:`--name` options. + Show a debug info entry's parents when selectively printing with + the `=` argument of :option:`--debug-info`, or options such + as :option:`--find` or :option:`--name`. .. option:: --parent-recurse-depth= Index: llvm/trunk/tools/llvm-dwarfdump/llvm-dwarfdump.cpp =================================================================== --- llvm/trunk/tools/llvm-dwarfdump/llvm-dwarfdump.cpp +++ llvm/trunk/tools/llvm-dwarfdump/llvm-dwarfdump.cpp @@ -173,14 +173,14 @@ static opt ShowChildren("show-children", desc("Show a debug info entry's children when selectively " - "printing with the = option."), + "printing entries."), cat(DwarfDumpCategory)); static alias ShowChildrenAlias("c", desc("Alias for -show-children."), aliasopt(ShowChildren)); static opt ShowParents("show-parents", desc("Show a debug info entry's parents when selectively " - "printing with the = option."), + "printing entries."), cat(DwarfDumpCategory)); static alias ShowParentsAlias("p", desc("Alias for -show-parents."), aliasopt(ShowParents));