diff options
author | James Henderson <jh7370@my.bristol.ac.uk> | 2019-09-13 15:01:39 +0000 |
---|---|---|
committer | James Henderson <jh7370@my.bristol.ac.uk> | 2019-09-13 15:01:39 +0000 |
commit | a2497b43e3998d3e4e22380906f0d3bc5c49adff (patch) | |
tree | cd5ffb98bc15364a2d68bff8e6bd4c81c4b6bff9 /llvm/docs/CommandGuide/llvm-readobj.rst | |
parent | 8e0f104916f1a69a1351bd623a105633bb183401 (diff) | |
download | bcm5719-llvm-a2497b43e3998d3e4e22380906f0d3bc5c49adff.tar.gz bcm5719-llvm-a2497b43e3998d3e4e22380906f0d3bc5c49adff.zip |
[docs][llvm-readelf][llvm-readobj] Improve --stack-sizes documentation
llvm-readobj's document was missing --stack-sizes entirely from its
document, so this patch adds it. It also adds a note to the llvm-readelf
description that the switch is only implemented for GNU style output
currently. For reference, --stack-sizes was added in r367942.
Reviewed by: MaskRay
Differential Revision: https://reviews.llvm.org/D67548
llvm-svn: 371862
Diffstat (limited to 'llvm/docs/CommandGuide/llvm-readobj.rst')
-rw-r--r-- | llvm/docs/CommandGuide/llvm-readobj.rst | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/llvm/docs/CommandGuide/llvm-readobj.rst b/llvm/docs/CommandGuide/llvm-readobj.rst index d15a6739b8d..30f7976183d 100644 --- a/llvm/docs/CommandGuide/llvm-readobj.rst +++ b/llvm/docs/CommandGuide/llvm-readobj.rst @@ -214,6 +214,12 @@ The following options are implemented only for the ELF file format. Display the section to segment mapping. +.. option:: --stack-sizes + + Display the contents of the stack sizes section(s), i.e. pairs of function + names and the size of their stack frames. Currently only implemented for GNU + style output. + .. option:: --version-info, -V Display version sections. |