diff options
author | James Henderson <jh7370@my.bristol.ac.uk> | 2019-06-11 10:20:07 +0000 |
---|---|---|
committer | James Henderson <jh7370@my.bristol.ac.uk> | 2019-06-11 10:20:07 +0000 |
commit | d5f38dae5982b59283c2a00a4d3c73122599c752 (patch) | |
tree | 5c618ccb474dea94a9b7ba48b81a5a58e7bccf02 /llvm/docs/CommandGuide | |
parent | 14241378d3cef7425348a547739b7def27137d3e (diff) | |
download | bcm5719-llvm-d5f38dae5982b59283c2a00a4d3c73122599c752.tar.gz bcm5719-llvm-d5f38dae5982b59283c2a00a4d3c73122599c752.zip |
[llvm-dwarfdump] Add -o to help text and remove --out-file from doc
-o is in the documentation, but not in the llvm-dwarfdump help text.
This patch adds it by inverting the -o and --out-file aliasing. It also
removes --out-file from the documentation, since we don't really want
people to be using this switch in practice.
Reviewed by: aprantl, JDevlieghere, dblaikie
Differential Revision: https://reviews.llvm.org/D63013
llvm-svn: 363044
Diffstat (limited to 'llvm/docs/CommandGuide')
-rw-r--r-- | llvm/docs/CommandGuide/llvm-dwarfdump.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/docs/CommandGuide/llvm-dwarfdump.rst b/llvm/docs/CommandGuide/llvm-dwarfdump.rst index a3b62664cbe..f8e30ebaa17 100644 --- a/llvm/docs/CommandGuide/llvm-dwarfdump.rst +++ b/llvm/docs/CommandGuide/llvm-dwarfdump.rst @@ -69,7 +69,7 @@ OPTIONS Lookup <address> in the debug information and print out the file, function, block, and line table details. -.. option:: -o <path>, --out-file=<path> +.. option:: -o <path> Redirect output to a file specified by <path>. |