diff options
author | K. Richard Pixley <rich@cygnus> | 1991-06-09 20:38:03 +0000 |
---|---|---|
committer | K. Richard Pixley <rich@cygnus> | 1991-06-09 20:38:03 +0000 |
commit | 052ec27f38a5e0ba72f2dc1def47017c6ed76787 (patch) | |
tree | 9c5896c70d5d5feabb9f41012fc8eefade12bf6e /binutils | |
parent | a01bf1fbc1b3ef33ea969c597dd29d86432bdbc0 (diff) | |
download | gdb-052ec27f38a5e0ba72f2dc1def47017c6ed76787.zip gdb-052ec27f38a5e0ba72f2dc1def47017c6ed76787.tar.gz gdb-052ec27f38a5e0ba72f2dc1def47017c6ed76787.tar.bz2 |
Don't sort the const array in place.
Diffstat (limited to 'binutils')
-rw-r--r-- | binutils/sparc-pinsn.c | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/binutils/sparc-pinsn.c b/binutils/sparc-pinsn.c index bd5d243..c22024d 100644 --- a/binutils/sparc-pinsn.c +++ b/binutils/sparc-pinsn.c @@ -20,9 +20,12 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ /* $Id$ $Log$ - Revision 1.6 1991/05/23 03:49:10 rich - new sparc-opcode, new pinsn. + Revision 1.7 1991/06/09 20:38:03 rich + Don't sort the const array in place. + * Revision 1.6 1991/05/23 03:49:10 rich + * new sparc-opcode, new pinsn. + * * Revision 1.5 1991/05/22 01:40:35 rich * Oops. * @@ -180,6 +183,7 @@ print_insn_sparc (memaddr, buffer, stream) register unsigned int i; +#ifdef comment if (!opcodes_sorted) { static int compare_opcodes (); @@ -187,6 +191,7 @@ print_insn_sparc (memaddr, buffer, stream) sizeof (sparc_opcodes[0]), compare_opcodes); opcodes_sorted = 1; } +#endif /* comment */ memcpy(&insn,buffer, sizeof (insn)); |