2010-01-26 Tristan Gingold <gingold@adacore.com>
[binutils.git] / gas / testsuite / lib / dounsreloc
blob0d6953382454b0cfedba1203b9799f6d2e356408
1 #!/bin/sh
2 # objdump the reloc table, but strip off the headings and reloc
3 # numbers and sort the result. Intended for use in comparing reloc
4 # tables that may not be in the same order.
6 objdump +reloc +omit-relocation-numbers +omit-symbol-numbers $1 \
7 | sort
8 #eof