]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
2001-07-25 Dave Brolley <brolley@redhat.com>
authorDave Brolley <brolley@redhat.com>
Wed, 25 Jul 2001 15:25:11 +0000 (15:25 +0000)
committerDave Brolley <brolley@redhat.com>
Wed, 25 Jul 2001 15:25:11 +0000 (15:25 +0000)
* objdump.c (SKIP_ZEROES): Only define it if it is not already defined.
(SKIP_ZEROES_AT_END): Only define it if it is not already defined.

binutils/ChangeLog
binutils/objdump.c

index 03e403a557e193a1ee642521cf86642f9d65f253..93aba1999ca7287684e0cf0cc531d21901a7a61c 100644 (file)
@@ -1,3 +1,8 @@
+2001-07-25  Dave Brolley  <brolley@redhat.com>
+
+       * objdump.c (SKIP_ZEROES): Only define it if it is not already defined.
+       (SKIP_ZEROES_AT_END): Only define it if it is not already defined.
+
 2001-07-19  Nick Clifton  <nickc@cambridge.redhat.com>
 
        * README: Update for 2.11.  Change bug reporting email address.
index 96b6031588ec23b28757b0a193691fc0b9a1b0ba..4b64bd6f81d378c57c5b715bf976993ef90ea6ed 100644 (file)
@@ -1222,7 +1222,9 @@ objdump_sprintf (va_alist)
 /* The number of zeroes we want to see before we start skipping them.
    The number is arbitrarily chosen.  */
 
+#ifndef SKIP_ZEROES
 #define SKIP_ZEROES (8)
+#endif
 
 /* The number of zeroes to skip at the end of a section.  If the
    number of zeroes at the end is between SKIP_ZEROES_AT_END and
@@ -1231,7 +1233,9 @@ objdump_sprintf (va_alist)
    attempt to avoid disassembling zeroes inserted by section
    alignment.  */
 
+#ifndef SKIP_ZEROES_AT_END
 #define SKIP_ZEROES_AT_END (3)
+#endif
 
 /* Disassemble some data in memory between given values.  */