diff options
author | James Henderson <jh7370@my.bristol.ac.uk> | 2019-06-13 13:58:44 +0000 |
---|---|---|
committer | James Henderson <jh7370@my.bristol.ac.uk> | 2019-06-13 13:58:44 +0000 |
commit | e6820dac99a8a42ef03e4e9668920cee9732256f (patch) | |
tree | 73838687de3c2d9305b95ce4e4442d860224007b /llvm/docs/CommandGuide | |
parent | 0be2d25ecc7d9b71e03b07529eb1581efa92674a (diff) | |
download | bcm5719-llvm-e6820dac99a8a42ef03e4e9668920cee9732256f.tar.gz bcm5719-llvm-e6820dac99a8a42ef03e4e9668920cee9732256f.zip |
[docs][llvm-symbolizer] Fix formatting issue with --functions
Reviewed by: rupprecht
Differential Revision: https://reviews.llvm.org/D63195
llvm-svn: 363266
Diffstat (limited to 'llvm/docs/CommandGuide')
-rw-r--r-- | llvm/docs/CommandGuide/llvm-symbolizer.rst | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/docs/CommandGuide/llvm-symbolizer.rst b/llvm/docs/CommandGuide/llvm-symbolizer.rst index ea4cc838c9a..1c31a38ae09 100644 --- a/llvm/docs/CommandGuide/llvm-symbolizer.rst +++ b/llvm/docs/CommandGuide/llvm-symbolizer.rst @@ -74,7 +74,7 @@ OPTIONS .. _llvm-symbolizer-opt-f: -.. option:: -functions[=<none|short|linkage>], -f +.. option:: -functions [<none|short|linkage>], -f Specify the way function names are printed (omit function name, print short function name, or print full linkage name, respectively). @@ -112,7 +112,7 @@ OPTIONS input (see example above). If architecture is not specified in either way, address will not be symbolized. Defaults to empty string. -.. option:: -dsym-hint=<path/to/file.dSYM> +.. option:: -dsym-hint <path/to/file.dSYM> (Darwin-only flag). If the debug info for a binary isn't present in the default location, look for the debug info at the .dSYM path provided via the @@ -131,14 +131,14 @@ OPTIONS Strip directories when printing the file path. -.. option:: -adjust-vma=<offset> +.. option:: -adjust-vma <offset> Add the specified offset to object file addresses when performing lookups. This can be used to perform lookups as if the object were relocated by the offset. .. _llvm-symbolizer-opt-output-style: -.. option:: -output-style=<LLVM|GNU> +.. option:: -output-style <LLVM|GNU> Specify the preferred output style. Defaults to ``LLVM``. When the output style is set to ``GNU``, the tool follows the style of GNU's **addr2line**. |