diff options
author | Nico Rieck <nico.rieck@gmail.com> | 2013-04-12 04:01:52 +0000 |
---|---|---|
committer | Nico Rieck <nico.rieck@gmail.com> | 2013-04-12 04:01:52 +0000 |
commit | f3f0b79704c57e05e2f2a859c2f6e06cbf684e5a (patch) | |
tree | f547a3b180c35bef20e0777132c7577ea2a9519d /llvm/docs | |
parent | 9d08f86b9517eaebeaeb9e695e4524b92b16402d (diff) | |
download | bcm5719-llvm-f3f0b79704c57e05e2f2a859c2f6e06cbf684e5a.tar.gz bcm5719-llvm-f3f0b79704c57e05e2f2a859c2f6e06cbf684e5a.zip |
Add -expand-relocs to llvm-readobj
This option expands shown relocations from single line to a dictionary
format:
Relocation {
Offset: 0x4
Type: R_386_32 (1)
Symbol: sym
Info: 0x0
}
llvm-svn: 179359
Diffstat (limited to 'llvm/docs')
-rw-r--r-- | llvm/docs/CommandGuide/llvm-readobj.rst | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/llvm/docs/CommandGuide/llvm-readobj.rst b/llvm/docs/CommandGuide/llvm-readobj.rst index 3ede21d5461..1ca0b19a425 100644 --- a/llvm/docs/CommandGuide/llvm-readobj.rst +++ b/llvm/docs/CommandGuide/llvm-readobj.rst @@ -63,6 +63,11 @@ input. Otherwise, it will read from the specified ``filenames``. Display unwind information. +.. option:: -expand-relocs + + When used with ``-relocations``, display each relocation in an expanded + multi-line format. + .. option:: -dynamic-table Display the ELF .dynamic section table (only for ELF object files). |