Initial import from FreeBSD RELENG_4:
[games.git] / gnu / usr.bin / as / testscripts / dounsortreloc
1 #!/bin/sh
2 # $FreeBSD: src/gnu/usr.bin/as/testscripts/dounsortreloc,v 1.4 1999/08/27 23:34:35 peter Exp $
3 # objdump the reloc table, but strip off the headings and reloc
4 # numbers and sort the result.  Intended for use in comparing reloc
5 # tables that may not be in the same order.
6
7 objdump +reloc +omit-relocation-numbers +omit-symbol-numbers $1 \
8         | sort
9 #eof