Add the DragonFly cvs id and perform general cleanups on cvs/rcs/sccs ids. Most
[dragonfly.git] / gnu / usr.bin / as / testscripts / dounsortreloc
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.
5 #
6 # $FreeBSD: src/gnu/usr.bin/as/testscripts/dounsortreloc,v 1.4 1999/08/27 23:34:35 peter Exp $
7 # $DragonFly: src/gnu/usr.bin/as/testscripts/Attic/dounsortreloc,v 1.2 2003/06/17 04:25:44 dillon Exp $
8
9 objdump +reloc +omit-relocation-numbers +omit-symbol-numbers $1 \
10         | sort
11 #eof