Browse Source
2013-08-19 Tristan Gingold <gingold@adacore.com> * nm.c (print_size_symbols): Directly get symbol size. binutils/testsuite/ 2013-08-19 Tristan Gingold <gingold@adacore.com> * binutils-all/nm.exp: Add a test for nm --size-sort * binutils-all/nm-elf-1.s: New file. * binutils-all/nm-1.s: New file.binutils-2_24-branch
6 changed files with 74 additions and 8 deletions
@ -0,0 +1,13 @@ |
|||
.globl text_symbol1 |
|||
.globl text_symbol2 |
|||
.globl text_symbol3 |
|||
.text |
|||
text_symbol1: |
|||
.long 0 |
|||
.long 0 |
|||
.long 0 |
|||
text_symbol2: |
|||
.long 0 |
|||
.long 0 |
|||
text_symbol3: |
|||
.long 0 |
|||
@ -0,0 +1,16 @@ |
|||
.globl text_symbol1 |
|||
.globl text_symbol2 |
|||
.globl text_symbol3 |
|||
.text |
|||
text_symbol1: |
|||
.long 0 |
|||
.long 0 |
|||
.long 0 |
|||
.size text_symbol1, . - text_symbol1 |
|||
text_symbol2: |
|||
.long 0 |
|||
.long 0 |
|||
.size text_symbol2, . - text_symbol2 |
|||
text_symbol3: |
|||
.long 0 |
|||
.size text_symbol3, . - text_symbol3 |
|||
Loading…
Reference in new issue