Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | [llvm-objdump] Use %08 instead of %016 to print leading addresses for 32-bit ↵ | Fangrui Song | 2019-06-17 | 1 | -15/+20 |
| | | | | | | | | | | binaries Reviewed By: grimar Differential Revision: https://reviews.llvm.org/D63398 llvm-svn: 363539 | ||||
* | [llvm-objdump] Prep for adding newlines before and after "Disassembly of ↵ | Fangrui Song | 2019-04-25 | 1 | -5/+3 |
| | | | | | | section ...:" llvm-svn: 359181 | ||||
* | [llvm-objdump] - Print symbol addressed when dumping disassembly output (-d) | George Rimar | 2019-01-09 | 1 | -0/+29 |
When GNU objdump dumps the input with -d it prints the symbol addresses, for example: 0000000000000031 <foo>: 31: 00 00 add %al,(%rax) ... llvm-objdump currently does not do that. Patch changes the behavior to match the GNU objdump. That is useful for implementing -z/--disassemble-zeroes (D56083), it allows omitting first zero bytes and keep the information about the symbol address in the output. Differential revision: https://reviews.llvm.org/D56123 llvm-svn: 350726 |